enddate datetime NOT NULL,
active tinyint NOT NULL DEFAULT 0,
user_id int NULL,
- quickvote tinyint NOT NULL DEFAULT 0,
+ `type` varchar(100) NOT NULL,
primary key (id),
constraint fk_user_election foreign key (user_id) references users(id)
);
id int NOT NULL auto_increment,
voter_id int DEFAULT NULL,
confirmed tinyint NOT NULL DEFAULT 0,
+ time datetime DEFAULT NULL,
constraint fk_vote_voter foreign key (voter_id) references voters(id),
primary key (id)
);
remember_token text,
remember_token_expires_at datetime,
primary key(id)
-);
\ No newline at end of file
+);