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