summaryrefslogtreecommitdiff
path: root/db/migrate/20150713160110_add_project_view_to_users.rb
blob: fea63576187e54a0736baf4e6ef91b95a7c1050b (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddProjectViewToUsers < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :project_view, :integer, default: 0
  end
end