github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/pgsql/query_polls.sql (about) 1 CREATE TABLE "polls" ( 2 `pollID` serial not null, 3 `parentID` int DEFAULT 0 not null, 4 `parentTable` varchar (100) DEFAULT 'topics' not null, 5 `type` int DEFAULT 0 not null, 6 `options` json not null, 7 `votes` int DEFAULT 0 not null, 8 primary key(`pollID`) 9 );