87: Rename sql with with capital V
This commit is contained in:
parent
38830f3856
commit
7d92dc4ddb
@ -0,0 +1,16 @@
|
||||
|
||||
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;
|
Loading…
x
Reference in New Issue
Block a user