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

20220324091224_add_enforce_auth_checks_on_uploads_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: 2c86d1d346d130c57836ef232c3554027dfd845d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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