rust_forum/migrations/20241204225151_create_comment_table.up.sql
Ahmet Kaan GÜMÜŞ dc849dd970 feat: post routing
2024-12-15 04:30:39 +03:00

7 lines
No EOL
306 B
SQL

-- Add up migration script here
CREATE TABLE IF NOT EXISTS "comment"(
post_creation_time TIMESTAMPTZ NOT NULL REFERENCES "post"(creation_time),
creation_time TIMESTAMPTZ PRIMARY KEY NOT NULL UNIQUE DEFAULT NOW(),
user_id BIGSERIAL NOT NULL REFERENCES "user"(id),
comment VARCHAR NOT NULL
);