mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:17:02 +02:00
0.1.21 fixes
This commit is contained in:
@ -261,7 +261,8 @@ create table if not exists `folder_extra` (
|
||||
`id` int unsigned not null auto_increment,
|
||||
`uid` int unsigned not null,
|
||||
`name` char(64) not null,
|
||||
unique(uid, name)
|
||||
unique(uid, name),
|
||||
key (`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
|
||||
|
@ -29,7 +29,8 @@ create table if not exists `folder_extra` (
|
||||
`id` int unsigned not null auto_increment,
|
||||
`uid` int unsigned not null,
|
||||
`name` char(64) not null,
|
||||
unique(uid, name)
|
||||
unique(uid, name),
|
||||
key (`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
create table if not exists `folder_message` (
|
||||
|
Reference in New Issue
Block a user