From 40d246fff24e19f7237aef059a95e3af3b718e62 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Sat, 25 Feb 2012 10:01:30 -0500 Subject: [PATCH] Remember custom skin selection after logout (#1488355) --- SQL/mysql.update.sql | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql index 0967c92..300ceb5 100644 --- a/SQL/mysql.update.sql +++ b/SQL/mysql.update.sql @@ -223,7 +223,7 @@ ALTER TABLE `contacts` DROP FOREIGN KEY `user_id_fk_contacts`; ALTER TABLE `contacts` DROP INDEX `user_contacts_index`; -ALTER TABLE `contacts` MODIFY `email` text NOT NULL DEFAULT ''; +ALTER TABLE `contacts` MODIFY `email` text NOT NULL; ALTER TABLE `contacts` ADD INDEX `user_contacts_index` (`user_id`,`del`); ALTER TABLE `contacts` ADD CONSTRAINT `user_id_fk_contacts` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) ON DELETE CASCADE ON UPDATE CASCADE; -- Gitblit v1.9.1