debian-mirror-gitlab/db/migrate/20130410175022_remove_wiki_table.rb
2016-06-16 23:09:34 +05:30

11 lines
175 B
Ruby

# rubocop:disable all
class RemoveWikiTable < ActiveRecord::Migration
def up
drop_table :wikis
end
def down
raise ActiveRecord::IrreversibleMigration
end
end