Files
outbox/init_db.sql
Dmitry Fedotov 73f9ba3c59 init
2025-05-03 20:27:04 +03:00

7 lines
177 B
SQL

CREATE TABLE IF NOT EXISTS outbox (
id text PRIMARY KEY,
created_at timestamp with time zone default now,
is_processed boolean default false,
payload jsonb
)