From 1bbd8ade1eb1437fc72f294d552146de30690aca Mon Sep 17 00:00:00 2001 From: Neil Blakey-Milner Date: Tue, 21 Dec 2004 08:03:09 +0000 Subject: [PATCH] Add missing comma from table definitions. --- sql/mysql/install/tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/mysql/install/tables.sql b/sql/mysql/install/tables.sql index 1d84c5d..ff35573 100644 --- a/sql/mysql/install/tables.sql +++ b/sql/mysql/install/tables.sql @@ -630,7 +630,7 @@ CREATE TABLE time_unit_lookup ( CREATE TABLE units_lookup ( id int(11) NOT NULL default '0', name char(100) NOT NULL default '', - UNIQUE KEY id (id) + UNIQUE KEY id (id), UNIQUE KEY name (name) ) TYPE=InnoDB; -- libgit2 0.21.4