From 3c6932d17b8588a640603192c0daaf0dcdcc4e6d Mon Sep 17 00:00:00 2001 From: SJ Date: Tue, 4 Mar 2014 13:42:34 +0100 Subject: [PATCH] schema fix --- util/db-mysql.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/db-mysql.sql b/util/db-mysql.sql index 7d4106b1..7ca9b617 100644 --- a/util/db-mysql.sql +++ b/util/db-mysql.sql @@ -1,7 +1,7 @@ create table if not exists `sph_counter` ( - `counter_id` int not null, - `max_doc_id` int not null, + `counter_id` bigint not null, + `max_doc_id` bigint not null, primary key (`counter_id`) );