From aa56565c2eff71b771a0e5d63dbd34a7cef04921 Mon Sep 17 00:00:00 2001 From: SJ Date: Sun, 5 May 2013 11:34:17 +0200 Subject: [PATCH] fixed attachment table schema --- util/db-mysql.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/db-mysql.sql b/util/db-mysql.sql index 7b4ad7be..11d99add 100644 --- a/util/db-mysql.sql +++ b/util/db-mysql.sql @@ -85,7 +85,7 @@ create table if not exists `attachment` ( `type` varchar(128) default null, `sig` char(64) not null, `size` int default 0, - `ptr` int default 0, + `ptr` bigint unsigned default 0, `deleted` tinyint(1) default 0, primary key (`id`) ) Engine=InnoDB;