github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/mysql/query_forums_actions.sql (about) 1 CREATE TABLE `forums_actions`( 2 `faid` int not null AUTO_INCREMENT, 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 ) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;