7 lines
177 B
SQL
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
|
|
)
|