gosora/schema/pgsql/query_forums_actions.sql
Azareal 78fbbcda21 Optimise template generator.
Optimise mysql adapter.
Add TokenScope to mysql adapter.
Add SimpleBulkInsert() to installer.
Optimise panel.Plugins() route.
2021-04-30 08:33:02 +10:00

10 lines
335 B
SQL

CREATE TABLE "forums_actions" (
`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`)
);