This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/sql/mysql/upgrade/3.5.0/folder_descendants.sql

9 lines
341 B
SQL

CREATE TABLE `folder_descendants`
(
`parent_id` int(11) NOT NULL,
`folder_id` int(11) NOT NULL,
primary key (parent_id,folder_id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
alter table folder_descendants add foreign key(parent_id) references folders(id);
alter table folder_descendants add foreign key(folder_id) references folders(id);