87: Remove SQL-file with wrong naming convention

This commit is contained in:
Tom Zhao 2025-03-26 13:23:45 +01:00
parent 0e261fc85e
commit 38830f3856

@ -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;