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

     1  CREATE TABLE "forums_actions" (
     2  	`faid` serial not null,
     3  	`fid` int not null,
     4  	`runOnTopicCreation` boolean DEFAULT 0 not null,
     5  	`runDaysAfterTopicCreation` int DEFAULT 0 not null,
     6  	`runDaysAfterTopicLastReply` int DEFAULT 0 not null,
     7  	`action` varchar (50) not null,
     8  	`extra` varchar (200) DEFAULT '' not null,
     9  	primary key(`faid`)
    10  );