Fix executing the removal of journal_versions

The original version does not work correctly.
pull/9522/head
Oliver Günther 3 years ago
parent d53409c75d
commit db401c553f
No known key found for this signature in database
GPG Key ID: A3A8BDAD7C0C552C
  1. 13
      db/migrate/20210726070813_remove_journal_versions.rb

@ -0,0 +1,13 @@
require_relative './20190724093332_add_journal_versions_table'
# db/migrate/20200522140244_remove_journal_versions_table.rb
# incorrectly removes journal_versions
class RemoveJournalVersions < ActiveRecord::Migration[6.1]
def up
::AddJournalVersionsTable.new.down
end
def down
# Nothing to do
end
end
Loading…
Cancel
Save