# база данных: ppc
# когда нужно выполнить: до выкладки
# примерное время выполнения: 0 секунд

CREATE TABLE camp_arc_queue (
    cid int unsigned not null primary key,
    queue_time timestamp not null default current_timestamp,
    operation enum('arc', 'unarc') not null,
    index idx_queue_time (queue_time)
);

