summaryrefslogtreecommitdiff
path: root/db/migrate/20130410175022_remove_wiki_table.rb
blob: 9077aa2473c09da1085811efe110e169f5a85866 (plain)
1
2
3
4
5
6
7
8
9
class RemoveWikiTable < ActiveRecord::Migration
  def up
    drop_table :wikis
  end

  def down
    raise ActiveRecord::IrreversibleMigration
  end
end