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

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

class AddApprovalRuleIdToDeploymentApprovals < Gitlab::Database::Migration[1.0]
  def change
    add_column :deployment_approvals, :approval_rule_id, :bigint
  end
end