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

20220131192643_add_show_diff_preview_in_email_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: 1811bf04ee499e66e673ea69d6f95c572e12f868 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :project_settings, :show_diff_preview_in_email, :boolean, default: true, null: false
  end
end