gitlab-org--gitlab-foss/db/migrate/20220131192643_add_show_dif...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
262 B
Ruby
Raw Normal View History

# 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