Create table statement has a semi-colon where it should have a comma

This commit is contained in:
Alexander Nicolaysen Sørnes
2006-07-30 02:52:46 +00:00
committed by WineHQ
parent 98f1ff0453
commit 2351a6ff8c

View File

@@ -19,6 +19,6 @@ create table appMaintainers (
maintainReason text,
superMaintainer bool,
submitTime datetime,
queued enum('true','false','rejected') NOT NULL default 'false';
queued enum('true','false','rejected') NOT NULL default 'false',
key(maintainerId)
);