Skip to content
代码片段 群组 项目
提交 b8462258 编辑于 作者: Shane Maglangit's avatar Shane Maglangit
浏览文件

Add NOT NULL constraint on terraform_state_versions.project_id

Changelog: other
上级 70229877
No related branches found
No related tags found
无相关合并请求
# frozen_string_literal: true
class AddTerraformStateVersionsProjectIdNotNullConstraint < Gitlab::Database::Migration[2.2]
disable_ddl_transaction!
milestone '17.9'
def up
add_not_null_constraint :terraform_state_versions, :project_id, validate: false
end
def down
remove_not_null_constraint :terraform_state_versions, :project_id
end
end
# frozen_string_literal: true
class PrepareTerraformStateVersionsProjectIdNotNullValidation < Gitlab::Database::Migration[2.2]
disable_ddl_transaction!
milestone '17.9'
CONSTRAINT_NAME = :check_84142902f6
def up
prepare_async_check_constraint_validation :terraform_state_versions, name: CONSTRAINT_NAME
end
def down
unprepare_async_check_constraint_validation :terraform_state_versions, name: CONSTRAINT_NAME
end
end
ff9d664955a375cdc264a048ee4f06e8c2d46d20e8dc0ea66234964d20f6cbd3
\ No newline at end of file
c3ef8d6c6c1b697ce79fbe48c7ba109b032316c06a2013bdaee32132eaee7615
\ No newline at end of file
...@@ -26272,6 +26272,9 @@ ALTER TABLE vulnerability_scanners ...@@ -26272,6 +26272,9 @@ ALTER TABLE vulnerability_scanners
ALTER TABLE p_ci_pipeline_variables ALTER TABLE p_ci_pipeline_variables
ADD CONSTRAINT check_6e932dbabf CHECK ((project_id IS NOT NULL)) NOT VALID; ADD CONSTRAINT check_6e932dbabf CHECK ((project_id IS NOT NULL)) NOT VALID;
   
ALTER TABLE terraform_state_versions
ADD CONSTRAINT check_84142902f6 CHECK ((project_id IS NOT NULL)) NOT VALID;
ALTER TABLE sbom_occurrences_vulnerabilities ALTER TABLE sbom_occurrences_vulnerabilities
ADD CONSTRAINT check_a02e48df9c CHECK ((project_id IS NOT NULL)) NOT VALID; ADD CONSTRAINT check_a02e48df9c CHECK ((project_id IS NOT NULL)) NOT VALID;
   
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册