0305571cb3
Fixed the build tags for the alt database engines. Tweaked the quotes on the PgSQL adapter. Still not functional. Removed the SQLite build tag as it's unlikely that it'll ever be implemented.
9 lines
258 B
SQL
9 lines
258 B
SQL
CREATE TABLE "polls" (
|
|
`pollID` serial not null,
|
|
`parentID` int DEFAULT 0 not null,
|
|
`parentTable` varchar (100) DEFAULT 'topics' not null,
|
|
`type` int DEFAULT 0 not null,
|
|
`options` json not null,
|
|
`votes` int DEFAULT 0 not null,
|
|
primary key(`pollID`)
|
|
); |