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

20211111164025_add_squash_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: 6120a6ed0b41a45853f0a44371c70e644d3340bb (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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