mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 00:31:58 +01:00
12 lines
273 B
MySQL
12 lines
273 B
MySQL
|
alter table `sph_index` add column `folder` int default 0;
|
||
|
|
||
|
drop table if exists `folder`;
|
||
|
create table if not exists `folder` (
|
||
|
`id` int not null auto_increment,
|
||
|
`parent_id` int default 0,
|
||
|
`name` char(64) not null unique,
|
||
|
primary key (`id`)
|
||
|
) Engine=InnoDB;
|
||
|
|
||
|
|