mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:37:02 +02:00
0.1.8
This commit is contained in:
@ -15,12 +15,12 @@ create table `sph_index` (
|
||||
`sent` int not null,
|
||||
`body` text,
|
||||
`size` int default '0',
|
||||
`attachments` int default 0,
|
||||
`piler_id` char(36) not null,
|
||||
`header_id` char(16) default null,
|
||||
`body_id` char(16) default null,
|
||||
primary key (`id`)
|
||||
) Engine=InnoDB;
|
||||
|
||||
|
||||
drop table if exists `metadata`;
|
||||
create table `metadata` (
|
||||
`id` bigint unsigned not null auto_increment,
|
||||
@ -49,7 +49,8 @@ create table `attachment` (
|
||||
`id` bigint unsigned not null auto_increment,
|
||||
`piler_id` char(36) not null,
|
||||
`attachment_id` int not null,
|
||||
`type` char(64) default null,
|
||||
`name` char(64) default null,
|
||||
`type` char(72) default null,
|
||||
`sig` char(64) not null,
|
||||
`size` int default 0,
|
||||
`ptr` int default 0,
|
||||
|
Reference in New Issue
Block a user