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

     1  CREATE TABLE [forums] (
     2  	[fid] int not null IDENTITY,
     3  	[name] nvarchar (100) not null,
     4  	[desc] nvarchar (200) not null,
     5  	[tmpl] nvarchar (200) DEFAULT '' not null,
     6  	[active] bit DEFAULT 1 not null,
     7  	[order] int DEFAULT 0 not null,
     8  	[topicCount] int DEFAULT 0 not null,
     9  	[preset] nvarchar (100) DEFAULT '' not null,
    10  	[parentID] int DEFAULT 0 not null,
    11  	[parentType] nvarchar (50) DEFAULT '' not null,
    12  	[lastTopicID] int DEFAULT 0 not null,
    13  	[lastReplyerID] int DEFAULT 0 not null,
    14  	primary key([fid])
    15  );