summaryrefslogtreecommitdiff
path: root/db/migrate/20211015021114_add_merge_commit_template_to_project_settings.rb
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