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

     1  CREATE TABLE [replies] (
     2  	[rid] int not null IDENTITY,
     3  	[tid] int not null,
     4  	[content] nvarchar (MAX) not null,
     5  	[parsed_content] nvarchar (MAX) not null,
     6  	[createdAt] datetime not null,
     7  	[createdBy] int not null,
     8  	[lastEdit] int DEFAULT 0 not null,
     9  	[lastEditBy] int DEFAULT 0 not null,
    10  	[lastUpdated] datetime not null,
    11  	[ip] nvarchar (200) DEFAULT '' not null,
    12  	[likeCount] int DEFAULT 0 not null,
    13  	[attachCount] int DEFAULT 0 not null,
    14  	[words] int DEFAULT 1 not null,
    15  	[actionType] nvarchar (20) DEFAULT '' not null,
    16  	[poll] int DEFAULT 0 not null,
    17  	primary key([rid]),
    18  	fulltext key([content])
    19  );