summaryrefslogtreecommitdiff
path: root/SQL
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-09-14 13:27:53 +0000
committerthomascube <thomas@roundcube.net>2006-09-14 13:27:53 +0000
commit9cdb93420ed7f44393bdd5d8c51d21d11b38c599 (patch)
treeaf221450cb4cc2fe11704a1c90b2a0a5aafb66d8 /SQL
parent380aed942268787de6e2a207f2655e7cbb756564 (diff)
Fixed quoting in MySQL update script
Diffstat (limited to 'SQL')
-rw-r--r--SQL/mysql.update.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql
index b16f2555f..308083279 100644
--- a/SQL/mysql.update.sql
+++ b/SQL/mysql.update.sql
@@ -7,5 +7,5 @@ ALTER TABLE `messages`
ADD `structure` TEXT,
ADD UNIQUE `uniqueness` (`cache_key`, `uid`);
-ALTER TABLE 'identities'
- ADD 'html_signature' tinyint(1) default 0 NOT NULL;
+ALTER TABLE `identities`
+ ADD `html_signature` tinyint(1) default 0 NOT NULL;