fixed attachment table schema

This commit is contained in:
SJ 2013-05-05 11:34:17 +02:00
parent 697726205a
commit aa56565c2e

View File

@ -85,7 +85,7 @@ create table if not exists `attachment` (
`type` varchar(128) default null, `type` varchar(128) default null,
`sig` char(64) not null, `sig` char(64) not null,
`size` int default 0, `size` int default 0,
`ptr` int default 0, `ptr` bigint unsigned default 0,
`deleted` tinyint(1) default 0, `deleted` tinyint(1) default 0,
primary key (`id`) primary key (`id`)
) Engine=InnoDB; ) Engine=InnoDB;