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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-20 22:59:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-20 22:59:22 +0300
commit72797f594a2c612e3788f4fab46ecbb13a92d5bb (patch)
treeb5a3073402d44558a1d44b2bc97a33334f3ee6e3 /db/migrate
parent5e7c3807691ed3da571544f57d6af71aa8a0937f (diff)
Add latest changes from gitlab-org/gitlab@15-5-stable-ee
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20221010121807_add_compliance_framework_id_to_namespace_settings.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20221010121807_add_compliance_framework_id_to_namespace_settings.rb b/db/migrate/20221010121807_add_compliance_framework_id_to_namespace_settings.rb
new file mode 100644
index 00000000000..e07f19242d5
--- /dev/null
+++ b/db/migrate/20221010121807_add_compliance_framework_id_to_namespace_settings.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+class AddComplianceFrameworkIdToNamespaceSettings < Gitlab::Database::Migration[2.0]
+ def change
+ add_column :namespace_settings, :default_compliance_framework_id, :bigint
+ end
+end