10 lines
175 B
Ruby
10 lines
175 B
Ruby
# rubocop:disable all
|
|
class RemoveWikiTable < ActiveRecord::Migration
|
|
def up
|
|
drop_table :wikis
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|