debian-mirror-gitlab/db/migrate/20151203162133_add_hide_project_limit_to_users.rb

7 lines
178 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-02-15 15:39:39 +05:30
class AddHideProjectLimitToUsers < ActiveRecord::Migration[4.2]
2015-12-23 02:04:40 +05:30
def change
add_column :users, :hide_project_limit, :boolean, default: false
end
end