6 строки
259 B
MySQL
6 строки
259 B
MySQL
|
// To 0.7
|
||
|
alter table task_instance add column queue varchar(50) NULL;
|
||
|
alter table task_instance add column pool varchar(50) NULL;
|
||
|
alter table task_instance add column priority_weight INT NULL;
|
||
|
create index ti_pool on task_instance (pool, state) using btree;
|