summaryrefslogtreecommitdiff
path: root/db/migrate/20151203162133_add_hide_project_limit_to_users.rb
blob: 5dc6d8bf44527f34fe9708e7c7cfd9a85c88ac7f (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddHideProjectLimitToUsers < ActiveRecord::Migration
  def change
    add_column :users, :hide_project_limit, :boolean, default: false
  end
end