diff options
author | thomascube <thomas@roundcube.net> | 2006-09-14 13:27:53 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-09-14 13:27:53 +0000 |
commit | 9cdb93420ed7f44393bdd5d8c51d21d11b38c599 (patch) | |
tree | af221450cb4cc2fe11704a1c90b2a0a5aafb66d8 | |
parent | 380aed942268787de6e2a207f2655e7cbb756564 (diff) |
Fixed quoting in MySQL update script
-rw-r--r-- | SQL/mysql.update.sql | 4 |
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; |