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

20130820102832_add_access_to_project_group_link.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98f3fa8752379e3b0ae3ebc1f76dad0997cabe61 (plain)
1
2
3
4
5
6
# 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