Files
2022-11-06 02:39:13 +03:00

11 lines
357 B
SQL

-- Your SQL goes here
create TABLE karma (
id BIGSERIAL PRIMARY KEY,
chat_id BIGINT REFERENCES chats(id) NOT NULL,
user_from BIGINT REFERENCES users(id) NOT NULL,
user_to BIGINT REFERENCES users(id) NOT NULL,
karma SMALLINT NOT NULL,
message_id BIGINT NOT NULL,
message_text TEXT,
created TIMESTAMPTZ NOT NULL DEFAULT NOW()
)