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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20231004100000_create_container_registry_protection_rules.rb')
-rw-r--r--db/migrate/20231004100000_create_container_registry_protection_rules.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20231004100000_create_container_registry_protection_rules.rb b/db/migrate/20231004100000_create_container_registry_protection_rules.rb
new file mode 100644
index 00000000000..30a90a8391d
--- /dev/null
+++ b/db/migrate/20231004100000_create_container_registry_protection_rules.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+class CreateContainerRegistryProtectionRules < Gitlab::Database::Migration[2.1]
+ enable_lock_retries!
+
+ def change
+ create_table :container_registry_protection_rules do |t|
+ t.references :project, null: false, index: false, foreign_key: { on_delete: :cascade }
+ t.timestamps_with_timezone null: false
+ t.integer :delete_protected_up_to_access_level, null: false, limit: 2
+ t.integer :push_protected_up_to_access_level, null: false, limit: 2
+ t.text :container_path_pattern, limit: 255, null: false
+
+ t.index [:project_id, :container_path_pattern], unique: true,
+ name: :i_container_protection_unique_project_id_container_path_pattern
+ end
+ end
+end