Commit 1bbd8ade1eb1437fc72f294d552146de30690aca
1 parent
02dc42d8
Add missing comma from table definitions.
SF Tracker: 1085242 Submitted by: joe1-1 git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3064 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
sql/mysql/install/tables.sql
| ... | ... | @@ -630,7 +630,7 @@ CREATE TABLE time_unit_lookup ( |
| 630 | 630 | CREATE TABLE units_lookup ( |
| 631 | 631 | id int(11) NOT NULL default '0', |
| 632 | 632 | name char(100) NOT NULL default '', |
| 633 | - UNIQUE KEY id (id) | |
| 633 | + UNIQUE KEY id (id), | |
| 634 | 634 | UNIQUE KEY name (name) |
| 635 | 635 | ) TYPE=InnoDB; |
| 636 | 636 | ... | ... |