From d82158d0ae5c3ad00dee80bd45f9c75b2b3d59bb Mon Sep 17 00:00:00 2001 From: kishan Date: Tue, 15 May 2012 15:25:46 +0530 Subject: [PATCH] bug CS-14890: Set vnc password for removed Vms as empty. vnc_password is not null column. status CS-14890: resolved fixed reviewed-by: Nitin --- setup/db/db/schema-2214to30.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/db/db/schema-2214to30.sql b/setup/db/db/schema-2214to30.sql index a13d9e37c3b..35dca284dc1 100755 --- a/setup/db/db/schema-2214to30.sql +++ b/setup/db/db/schema-2214to30.sql @@ -742,4 +742,4 @@ UPDATE `cloud`.`networks` n SET n.display_text=(CONCAT('guestNetworkForBasicZon UPDATE `cloud`.`configuration` SET description='Bypass internal dns, use exetrnal dns1 and dns2' WHERE name='use.external.dns'; UPDATE `cloud`.`configuration` SET category='Alert' WHERE name='capacity.check.period'; -UPDATE `cloud`.`vm_instance` SET vnc_password = null where removed is not null; +UPDATE `cloud`.`vm_instance` SET vnc_password = '' where removed is not null;