From 1ad5d81dff9ab714d1ca992c9a7344f192eeaa61 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Mon, 17 Jan 2005 19:07:17 +0000 Subject: - configurable format of icon labels for maps (Alexei) - added column sysmaps.label_type (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1615 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- upgrades/dbpatches/1.1alpha4_to_1.1alpha5/mysql/patch.sql | 2 ++ upgrades/dbpatches/1.1alpha4_to_1.1alpha5/postgresql/patch.sql | 2 ++ 2 files changed, 4 insertions(+) (limited to 'upgrades/dbpatches') diff --git a/upgrades/dbpatches/1.1alpha4_to_1.1alpha5/mysql/patch.sql b/upgrades/dbpatches/1.1alpha4_to_1.1alpha5/mysql/patch.sql index 94c0b8fb..d6aa116a 100644 --- a/upgrades/dbpatches/1.1alpha4_to_1.1alpha5/mysql/patch.sql +++ b/upgrades/dbpatches/1.1alpha4_to_1.1alpha5/mysql/patch.sql @@ -27,3 +27,5 @@ update hosts set available=1 where status=0; update hosts set available=2 where status=2; update hosts set status=0 where status=2; + +alter table sysmaps add label_type int(4) DEFAULT '0' NOT NULL; diff --git a/upgrades/dbpatches/1.1alpha4_to_1.1alpha5/postgresql/patch.sql b/upgrades/dbpatches/1.1alpha4_to_1.1alpha5/postgresql/patch.sql index ae4d1500..f9340281 100644 --- a/upgrades/dbpatches/1.1alpha4_to_1.1alpha5/postgresql/patch.sql +++ b/upgrades/dbpatches/1.1alpha4_to_1.1alpha5/postgresql/patch.sql @@ -30,3 +30,5 @@ update hosts set available=1 where status=0; update hosts set available=2 where status=2; update hosts set status=0 where status=2; + +alter table sysmaps add label_type int4 DEFAULT '0' NOT NULL; -- cgit