mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 07:36:41 +10:00
10 lines
143 B
Ruby
10 lines
143 B
Ruby
class RemoveAdmin < ActiveRecord::Migration
|
|
def up
|
|
drop_table :rails_admin_histories
|
|
end
|
|
|
|
def down
|
|
raise "No rollback"
|
|
end
|
|
end
|