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

  def down
    remove_column :users, :dashboard
  end
end