gosora/schema/mssql/query_polls_votes.sql

7 lines
180 B
MySQL
Raw Normal View History

CREATE TABLE [polls_votes] (
[pollID] int not null,
[uid] int not null,
[option] int DEFAULT 0 not null,
[castAt] datetime not null,
[ip] nvarchar (200) DEFAULT '' not null
);