10 lines
153 B
Ruby
10 lines
153 B
Ruby
|
class RemoveWikiTable < ActiveRecord::Migration
|
||
|
def up
|
||
|
drop_table :wikis
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
raise ActiveRecord::IrreversibleMigration
|
||
|
end
|
||
|
end
|