debian-mirror-gitlab/db/migrate/20130820102832_add_access_to_project_group_link.rb
2016-06-16 23:09:34 +05:30

7 lines
221 B
Ruby

# rubocop:disable all
class AddAccessToProjectGroupLink < ActiveRecord::Migration
def change
add_column :project_group_links, :group_access, :integer, null: false, default: ProjectGroupLink.default_access
end
end