From 13ffa2810eaef30a0f69fc3af6ecbb5bc9dd0bdc Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Thu, 30 Sep 2010 03:10:03 -0400
Subject: [PATCH] - Added line number for error message

---
 SQL/mysql.update.sql |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql
index 23fcad8..28ebf6f 100644
--- a/SQL/mysql.update.sql
+++ b/SQL/mysql.update.sql
@@ -1,4 +1,4 @@
--- RoundCube Webmail update script for MySQL databases
+-- Roundcube Webmail update script for MySQL databases
 
 -- Updates from version 0.1-stable
 
@@ -53,7 +53,6 @@
 ALTER TABLE `contacts` ENGINE=InnoDB;
 ALTER TABLE `identities` ENGINE=InnoDB;
 
-
 -- Updates from version 0.3-stable
 
 TRUNCATE `messages`;
@@ -68,6 +67,8 @@
     ADD INDEX `user_contacts_index` (`user_id`,`email`);
 
 -- Updates from version 0.3.1
+-- WARNING: Make sure that all tables are using InnoDB engine!!!
+--          If not, use: ALTER TABLE xxx ENGINE=InnoDB;
 
 /* MySQL bug workaround: http://bugs.mysql.com/bug.php?id=46293 */
 /*!40014 SET FOREIGN_KEY_CHECKS=0 */;

--
Gitblit v1.9.1