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

20200104113850_add_forking_access_level_to_project_feature.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c5f764ebf3d52d8b26efc0d8a6da353252ba59d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddForkingAccessLevelToProjectFeature < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :project_features, :forking_access_level, :integer
  end
end