Add missing comma in SQL CREATE TABLE statement.

This commit is contained in:
Bradley M. Kuhn 2014-02-10 12:27:07 -05:00
parent cd16187efa
commit 3ed4440b24

View file

@ -42,7 +42,7 @@ DROP TABLE IF EXISTS `election_voters`;
CREATE TABLE `election_voters` (
`id` int(11) NOT NULL auto_increment,
`election_id` int(11) NOT NULL default '0',
`email_address` varchar(500) NOT NULL default ''
`email_address` varchar(500) NOT NULL default '',
PRIMARY KEY (`id`));