piler/util/db-upgrade-0.20-vs-0.21.sql

16 lines
385 B
MySQL
Raw Normal View History

alter table `sph_index` add column `folder` int default 0;
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;
2012-08-28 22:00:45 +02:00
create table if not exists `notes` (
`id` bigint unsigned not null,
`note` text default null,
key `notes_idx` (`id`)
) ENGINE=InnoDB;