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

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