From a039c626eef6ad0e6c915d1618fbd0e6e40f57a2 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Thu, 04 Mar 2010 09:39:47 -0500 Subject: [PATCH] - Fix deleting all messages from last list page (#1486293) --- SQL/mysql.update.sql | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql index 2e47aea..495b600 100644 --- a/SQL/mysql.update.sql +++ b/SQL/mysql.update.sql @@ -77,4 +77,8 @@ ALTER TABLE `identities` ADD CONSTRAINT `user_id_fk_identities` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) /*!40008 ON DELETE CASCADE ON UPDATE CASCADE */; +ALTER TABLE `contacts` ALTER `name` SET DEFAULT ''; +ALTER TABLE `contacts` ALTER `firstname` SET DEFAULT ''; +ALTER TABLE `contacts` ALTER `surname` SET DEFAULT ''; + /*!40014 SET FOREIGN_KEY_CHECKS=1 */; -- Gitblit v1.9.1