summaryrefslogtreecommitdiff
path: root/db/migrate/20150610065936_add_dashboard_to_users.rb
blob: a0bf5f31f0009dd373d99808a0b2c315b3b58cb7 (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable all
class AddDashboardToUsers < ActiveRecord::Migration[4.2]
  def up
    add_column :users, :dashboard, :integer, default: 0
  end

  def down
    remove_column :users, :dashboard
  end
end