Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151203162133_add_hide_project_limit_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ffadfa1894ee71c746cde101e7d95fa26e48682 (plain)
1
2
3
4
5
class AddHideProjectLimitToUsers < ActiveRecord::Migration
  def change
    add_column :users, :hide_project_limit, :boolean, default: false
  end
end