init
This commit is contained in:
6
init_db.sql
Normal file
6
init_db.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
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
|
||||
)
|
||||
Reference in New Issue
Block a user