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

20150930110012_add_group_share_lock.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96938bf9ab64b8ff5810a771e4e859aae477b47f (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddGroupShareLock < ActiveRecord::Migration
  def change
    add_column :namespaces, :share_with_group_lock, :boolean, default: false
  end
end