debian-mirror-gitlab/db/migrate/20150930110012_add_group_share_lock.rb

7 lines
172 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-01-03 12:48:30 +05:30
class AddGroupShareLock < ActiveRecord::Migration
2016-06-02 11:05:42 +05:30
def change
add_column :namespaces, :share_with_group_lock, :boolean, default: false
end
end