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