debian-mirror-gitlab/db/migrate/20151203162133_add_hide_project_limit_to_users.rb
2016-06-16 23:09:34 +05:30

7 lines
173 B
Ruby

# rubocop:disable all
class AddHideProjectLimitToUsers < ActiveRecord::Migration
def change
add_column :users, :hide_project_limit, :boolean, default: false
end
end