mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-25 08:00:12 +01:00
updated the folder table scheme
This commit is contained in:
parent
a6690a2428
commit
68e5a64c9f
@ -244,7 +244,8 @@ create table if not exists `group_email` (
|
|||||||
create table if not exists `folder` (
|
create table if not exists `folder` (
|
||||||
`id` int not null auto_increment,
|
`id` int not null auto_increment,
|
||||||
`parent_id` int default 0,
|
`parent_id` int default 0,
|
||||||
`name` char(64) not null unique,
|
`name` char(64) not null,
|
||||||
|
unique(`parent_id`, `name`),
|
||||||
primary key (`id`)
|
primary key (`id`)
|
||||||
) Engine=InnoDB;
|
) Engine=InnoDB;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user