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