File size: 331 Bytes
8059bf0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
CREATE TABLE IF NOT EXISTS scheduler_outbox (
    id BIGSERIAL PRIMARY KEY,
    event_type TEXT NOT NULL,
    account_id BIGINT NULL,
    group_id BIGINT NULL,
    payload JSONB NULL,
    created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);

CREATE INDEX IF NOT EXISTS idx_scheduler_outbox_created_at ON scheduler_outbox (created_at);