X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=queue.mysql;fp=queue.mysql;h=b7b0aa19d880cb9dd9ef7157e748b12e546a2f66;hb=4b71f2c97f7c2fd9e3f1aa725eb82395b71c0496;hp=7106f543f754565f40c57fdcbfdc2d5b324eb304;hpb=a279741f8a1fde1b6cb027aebe2ff2c0ac45ee51;p=mubot4fb%2Fmubot4fb.git diff --git a/queue.mysql b/queue.mysql index 7106f54..b7b0aa1 100644 --- a/queue.mysql +++ b/queue.mysql @@ -1,9 +1,9 @@ CREATE TABLE job ( - id int(10) unsigned NOT NULL auto_increment, + id BIGINT UNSIGNED NOT NULL auto_increment, func varchar(255) NOT NULL, arg MEDIUMBLOB, enqueue_time DATETIME NOT NULL, - primary key ( id ) + primary key (id) ) ENGINE=InnoDB; create index func_idx on job(func);