summaryrefslogtreecommitdiff
path: root/db/migrate/20220303191047_add_text_limit_to_deployment_approvals_comment.rb
blob: 70c7f5f3a7bda440c419beed4901ad3f76a3340a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class AddTextLimitToDeploymentApprovalsComment < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  def up
    add_text_limit :deployment_approvals, :comment, 255
  end

  def down
    remove_text_limit :deployment_approvals, :comment
  end
end