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

20210520102039_group_protected_environments_add_column.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 642e22c5f480884a41b042c85a002063d882c50a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class GroupProtectedEnvironmentsAddColumn < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  def up
    add_column :protected_environments, :group_id, :bigint
    change_column_null :protected_environments, :project_id, true
  end

  def down
    change_column_null :protected_environments, :project_id, false
    remove_column :protected_environments, :group_id
  end
end