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

     1  CREATE TABLE [conversations_posts] (
     2  	[pid] int not null IDENTITY,
     3  	[cid] int not null,
     4  	[createdBy] int not null,
     5  	[body] nvarchar (50) not null,
     6  	[post] nvarchar (50) DEFAULT '' not null,
     7  	primary key([pid])
     8  );