Skip to content

Add cascading namespace setting database migration helper

What does this MR do?

Closes #327033 (closed)

Add a migration helper to simplify adding a new cascading setting. The helper will create the four required columns, two each in namespace_settings and application_settings.

Developer documentation will be updated along with !58917 (merged).

Usage:

class AddDelayedProjectRemovalCascadingSetting < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  def change
    add_cascading_namespace_setting :delayed_project_removal, :boolean, default: false, null: false
  end
end

Screenshots (strongly suggested)

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Drew Blessing

Merge request reports