Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130410175022_remove_wiki_table.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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