This commit is contained in:
Dmitry Fedotov
2025-05-03 21:35:32 +03:00
parent efc5bea070
commit ff386892e4
6 changed files with 226 additions and 0 deletions

7
init_db.sql Normal file
View File

@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS $1 (
id text PRIMARY KEY,
created_at timestamp with time zone default now,
updated_at timestamp with time zone default now,
deleted_at timestamp with time zone,
payload jsonb
)