post, comment interaction db
This commit is contained in:
parent
60d18771d7
commit
1e8d656711
10 changed files with 184 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
-- Add up migration script here
|
||||
CREATE TABLE IF NOT EXISTS "comment_interaction"(
|
||||
comment_creation_time TIMESTAMPTZ NOT NULL REFERENCES "comment"(creation_time),
|
||||
interaction_id BIGSERIAL NOT NULL REFERENCES "interaction"(id),
|
||||
interactor_id BIGSERIAL NOT NULL REFERENCES "user"(id),
|
||||
interaction_time TIMESTAMPTZ PRIMARY KEY NOT NULL UNIQUE
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue