gosora/schema/pgsql/query_conversations.sql
2022-02-21 03:16:15 +00:00

8 lines
219 B
SQL

CREATE TABLE "conversations" (
`cid` serial not null,
`createdBy` int not null,
`createdAt` timestamp not null,
`lastReplyAt` timestamp not null,
`lastReplyBy` int not null,
primary key(`cid`)
);