8 lines
226 B
MySQL
8 lines
226 B
MySQL
![]() |
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
|
||
|
)
|