From 38830f3856e02623ebb246bdc7c0cb471a5840eb Mon Sep 17 00:00:00 2001 From: Tom Zhao <tom.zhao@dsv.su.se> Date: Wed, 26 Mar 2025 13:23:45 +0100 Subject: [PATCH] 87: Remove SQL-file with wrong naming convention --- .../v7__project_parent_phase2_review.sql | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 core/src/main/resources/db/migration/v7__project_parent_phase2_review.sql diff --git a/core/src/main/resources/db/migration/v7__project_parent_phase2_review.sql b/core/src/main/resources/db/migration/v7__project_parent_phase2_review.sql deleted file mode 100644 index 2fa8341982..0000000000 --- a/core/src/main/resources/db/migration/v7__project_parent_phase2_review.sql +++ /dev/null @@ -1,16 +0,0 @@ - -alter table `project` - add column `parent_project_id` bigint(20) null default null; - -alter table `project` - add column `root_project_id` bigint(20) null default null; - -alter table `project` - add constraint fk_project_parent_project_id_project_id - foreign key (parent_project_id) references project(id) - on delete cascade on update cascade; - -alter table `project` - add constraint fk_project_root_project_id_project_id - foreign key (root_project_id) references project(id) - on delete cascade on update cascade;