github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/pgsql/query_polls_votes.sql (about) 1 CREATE TABLE "polls_votes" ( 2 `pollID` int not null, 3 `uid` int not null, 4 `option` int DEFAULT 0 not null, 5 `castAt` timestamp not null, 6 `ip` varchar (200) DEFAULT '' not null 7 );