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

20220303190555_add_comment_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: 56b873c009acb595d84378e08ca9e4d4b7f59c51 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class AddCommentToDeploymentApprovals < Gitlab::Database::Migration[1.0]
  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20220303191047_add_text_limit_to_deployment_approvals_comment
  def change
    add_column :deployment_approvals, :comment, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end