OSDN Git Service

7106f543f754565f40c57fdcbfdc2d5b324eb304
[mubot4fb/mubot4fb.git] / queue.mysql
1 CREATE TABLE job (
2         id           int(10) 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