summaryrefslogtreecommitdiff
path: root/db/migrate/20150930110012_add_group_share_lock.rb
blob: 627557654571e4a79e871995c3d43386034e0abb (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddGroupShareLock < ActiveRecord::Migration[4.2]
  def change
    add_column :namespaces, :share_with_group_lock, :boolean, default: false
  end
end