mirror of
https://github.com/hexolan/panels.git
synced 2026-03-26 12:40:21 +00:00
11 lines
268 B
SQL
11 lines
268 B
SQL
CREATE TABLE comments (
|
|
"id" serial PRIMARY KEY,
|
|
|
|
"post_id" varchar(64) NOT NULL,
|
|
"author_id" varchar(64) NOT NULL,
|
|
|
|
"message" varchar(512) NOT NULL,
|
|
|
|
"created_at" timestamp NOT NULL DEFAULT timezone('utc', now()),
|
|
"updated_at" timestamp
|
|
); |