BigW Consortium Gitlab

20170206115204_add_column_ghost_to_users.rb 184 Bytes
Newer Older
1 2 3 4
class AddColumnGhostToUsers < ActiveRecord::Migration
  DOWNTIME = false

  def up
5
    add_column :users, :ghost, :boolean
6 7 8 9 10 11
  end

  def down
    remove_column :users, :ghost
  end
end