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

Validate NOT NULL on project_relation_exports sharding key

Validate the NOT NULL constraint on the project_id
column on the project_relation_exports table

Changelog: other
上级 89116d98
No related branches found
No related tags found
无相关合并请求
...@@ -17,5 +17,4 @@ desired_sharding_key: ...@@ -17,5 +17,4 @@ desired_sharding_key:
table: project_relation_exports table: project_relation_exports
sharding_key: project_id sharding_key: project_id
belongs_to: relation_export belongs_to: relation_export
awaiting_backfill_on_parent: true
table_size: small table_size: small
...@@ -8,14 +8,6 @@ description: Used to track the generation of relation export files for projects ...@@ -8,14 +8,6 @@ description: Used to track the generation of relation export files for projects
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90624 introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90624
milestone: '15.2' milestone: '15.2'
gitlab_schema: gitlab_main_cell gitlab_schema: gitlab_main_cell
desired_sharding_key:
project_id:
references: projects
backfill_via:
parent:
foreign_key: project_export_job_id
table: project_export_jobs
sharding_key: project_id
belongs_to: project_export_job
desired_sharding_key_migration_job_name: BackfillProjectRelationExportsProjectId
table_size: small table_size: small
sharding_key:
project_id: projects
# frozen_string_literal: true
class ValidateProjectRelationExportsProjectIdNotNullConstraint < Gitlab::Database::Migration[2.2]
milestone '17.10'
def up
validate_not_null_constraint :project_relation_exports, :project_id
end
def down
# no-op
end
end
9f0cfe2f27bf8bf3e0e8000df91230a893118064fd115077e7722c680a5ae7e2
\ No newline at end of file
...@@ -19797,7 +19797,8 @@ CREATE TABLE project_relation_exports ( ...@@ -19797,7 +19797,8 @@ CREATE TABLE project_relation_exports (
project_id bigint, project_id bigint,
CONSTRAINT check_15e644d856 CHECK ((char_length(jid) <= 255)), CONSTRAINT check_15e644d856 CHECK ((char_length(jid) <= 255)),
CONSTRAINT check_4b5880b795 CHECK ((char_length(relation) <= 255)), CONSTRAINT check_4b5880b795 CHECK ((char_length(relation) <= 255)),
CONSTRAINT check_dbd1cf73d0 CHECK ((char_length(export_error) <= 300)) CONSTRAINT check_dbd1cf73d0 CHECK ((char_length(export_error) <= 300)),
CONSTRAINT check_f461e3537f CHECK ((project_id IS NOT NULL))
); );
   
CREATE SEQUENCE project_relation_exports_id_seq CREATE SEQUENCE project_relation_exports_id_seq
...@@ -27251,9 +27252,6 @@ ALTER TABLE sprints ...@@ -27251,9 +27252,6 @@ ALTER TABLE sprints
ALTER TABLE web_hook_logs ALTER TABLE web_hook_logs
ADD CONSTRAINT check_df72cb58f5 CHECK ((char_length(url_hash) <= 44)) NOT VALID; ADD CONSTRAINT check_df72cb58f5 CHECK ((char_length(url_hash) <= 44)) NOT VALID;
   
ALTER TABLE project_relation_exports
ADD CONSTRAINT check_f461e3537f CHECK ((project_id IS NOT NULL)) NOT VALID;
ALTER TABLE merge_request_blocks ALTER TABLE merge_request_blocks
ADD CONSTRAINT check_f8034ca45e CHECK ((project_id IS NOT NULL)) NOT VALID; ADD CONSTRAINT check_f8034ca45e CHECK ((project_id IS NOT NULL)) NOT VALID;
   
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册