gosora/schema/pgsql/query_polls_options.sql
2022-02-21 03:16:15 +00:00

5 lines
132 B
SQL

CREATE TABLE "polls_options" (
`pollID` int not null,
`option` int DEFAULT 0 not null,
`votes` int DEFAULT 0 not null
);