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

     1  CREATE TABLE [conversations] (
     2  	[cid] int not null IDENTITY,
     3  	[createdBy] int not null,
     4  	[createdAt] datetime not null,
     5  	[lastReplyAt] datetime not null,
     6  	[lastReplyBy] int not null,
     7  	primary key([cid])
     8  );