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