github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/pgsql/query_conversations.sql (about)

     1  CREATE TABLE "conversations" (
     2  	`cid` serial not null,
     3  	`createdBy` int not null,
     4  	`createdAt` timestamp not null,
     5  	`lastReplyAt` timestamp not null,
     6  	`lastReplyBy` int not null,
     7  	primary key(`cid`)
     8  );