2021-04-29 22:33:02 +00:00
|
|
|
CREATE TABLE "forums_actions" (
|
2022-02-21 03:16:15 +00:00
|
|
|
`faid` serial not null,
|
|
|
|
`fid` int not null,
|
|
|
|
`runOnTopicCreation` boolean DEFAULT 0 not null,
|
|
|
|
`runDaysAfterTopicCreation` int DEFAULT 0 not null,
|
|
|
|
`runDaysAfterTopicLastReply` int DEFAULT 0 not null,
|
|
|
|
`action` varchar (50) not null,
|
|
|
|
`extra` varchar (200) DEFAULT '' not null,
|
|
|
|
primary key(`faid`)
|
2021-04-29 22:33:02 +00:00
|
|
|
);
|