summaryrefslogtreecommitdiff
path: root/db/migrate/20130410175022_remove_wiki_table.rb
blob: 5885b1cc375b9dcf01c2df34e1292829a7409f9d (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable all
class RemoveWikiTable < ActiveRecord::Migration
  def up
    drop_table :wikis
  end

  def down
    raise ActiveRecord::IrreversibleMigration
  end
end