debian-mirror-gitlab/db/migrate/20170206115204_add_column_ghost_to_users.rb
2019-02-15 15:39:39 +05:30

12 lines
189 B
Ruby

class AddColumnGhostToUsers < ActiveRecord::Migration[4.2]
DOWNTIME = false
def up
add_column :users, :ghost, :boolean
end
def down
remove_column :users, :ghost
end
end