github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/mssql/query_forums_actions.sql (about) 1 CREATE TABLE [forums_actions] ( 2 [faid] int not null IDENTITY, 3 [fid] int not null, 4 [runOnTopicCreation] bit DEFAULT 0 not null, 5 [runDaysAfterTopicCreation] int DEFAULT 0 not null, 6 [runDaysAfterTopicLastReply] int DEFAULT 0 not null, 7 [action] nvarchar (50) not null, 8 [extra] nvarchar (200) DEFAULT '' not null, 9 primary key([faid]) 10 );