87: Loose up some SQL-constraints

This commit is contained in:
Tom Zhao 2025-04-02 15:18:46 +02:00
parent b04c5d439e
commit 8465d4c687

@ -6,7 +6,7 @@ alter table `project`
add column `root_project_id` bigint(20) null default null;
alter table `project`
add column `clone_timestamp` datetime not null default null;
add column `clone_timestamp` datetime null default null;
alter table `project`
add constraint fk_project_parent_project_id_project_id
@ -20,9 +20,7 @@ alter table `project`
alter table `reviewer_approval`
add column `is_cloned` bit(1) not null default false;
add column `is_cloned` bit(1) null default null;
alter table `reviewer_approval`
add column `clone_timestamp` datetime not null default null;
update table `reviewer_approval` set is_cloned = false;
add column `clone_timestamp` datetime null default null;