# Очередь для включения показов по отключенным за низкий ctr фразам
# время выполнения 0.1 с
# база PPC

CREATE table camp_resume_context (
    cid int unsigned not null,
    status enum ('done', 'ready') not null default 'ready',
    rank tinyint not null default 0,
    PRIMARY KEY cid(cid),
    KEY status_rank(status, rank)
)

