mirror of
https://github.com/hexolan/panels.git
synced 2026-03-26 20:41:15 +00:00
init comment-service
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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
|
||||
);
|
||||
Reference in New Issue
Block a user