mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-25 04:26:08 +10:00
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
|