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

20230606124854_add_default_branch_protections_json_to_namespace_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a35effe0bb7dcc4659e418fd22f130f8ea58ca4b (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddDefaultBranchProtectionsJsonToNamespaceSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :namespace_settings, :default_branch_protection_defaults, :jsonb, null: false, default: {}
  end
end