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

20110926082616_remove_admin.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aac9ff7888ce7b27e7caacff2560c199a504788c (plain)
1
2
3
4
5
6
7
8
9
class RemoveAdmin < ActiveRecord::Migration
  def up
    drop_table :rails_admin_histories
  end

  def down
    raise "No rollback"
  end
end