Files
outbox/init_db.sql

7 lines
177 B
MySQL
Raw Permalink Normal View History

2025-05-03 20:27:04 +03:00
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
)