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

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

class AddMergeCommitTemplateToProjectSettings < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :project_settings, :merge_commit_template, :text # rubocop:disable Migration/AddLimitToTextColumns
  end
end