From 67a9711aaef4f04f0e52ae8efe7ff00211fef04c Mon Sep 17 00:00:00 2001 From: azammitdcarf Date: Tue, 31 Aug 2010 01:54:59 +0000 Subject: [PATCH] Added missing comma --- database/quexs.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/quexs.sql b/database/quexs.sql index ad1fc2c0..0ada4c75 100644 --- a/database/quexs.sql +++ b/database/quexs.sql @@ -31,7 +31,7 @@ CREATE TABLE `appointment` ( `completed_call_id` bigint(20) default NULL, PRIMARY KEY (`appointment_id`), KEY `completed_call_id` (`completed_call_id`), - KEY `call_attempt_id` (`call_attempt_id`) + KEY `call_attempt_id` (`call_attempt_id`), KEY `case_id` (`case_id`) ) ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;