github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/pgsql/query_polls_options.sql (about)

     1  CREATE TABLE "polls_options" (
     2  	`pollID` int not null,
     3  	`option` int DEFAULT 0 not null,
     4  	`votes` int DEFAULT 0 not null
     5  );