OSDN Git Service

drop old twitter worker
[mubot4fb/mubot4fb.git] / queue.mysql
1 CREATE TABLE job (
2         id           BIGINT UNSIGNED NOT NULL auto_increment,
3         func         varchar(255)     NOT NULL,
4         arg          MEDIUMBLOB,
5         enqueue_time DATETIME         NOT NULL,
6         primary key (id)
7 ) ENGINE=InnoDB;
8
9 create index func_idx on job(func);
10