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.
7 lines
196 B
SQL
7 lines
196 B
SQL
CREATE TABLE "polls_votes" (
|
|
`pollID` int not null,
|
|
`uid` int not null,
|
|
`option` int DEFAULT 0 not null,
|
|
`castAt` timestamp not null,
|
|
`ipaddress` varchar (200) DEFAULT '0.0.0.0.0' not null
|
|
); |