summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-12-04 11:10:23 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-12-04 11:10:23 +0000
commitb8677042875ced11a84258e57642fa75e85a022c (patch)
tree120f7b0f197cac72079aae1f5a6b8db674ec3047 /upgrades/dbpatches
parent560c32cc84776bc518a625dbc92acd08920e3fc1 (diff)
downloadzabbix-b8677042875ced11a84258e57642fa75e85a022c.tar.gz
zabbix-b8677042875ced11a84258e57642fa75e85a022c.tar.xz
zabbix-b8677042875ced11a84258e57642fa75e85a022c.zip
- automatic recovery of unsupported items (Alexei)
- added config.refresh_unsupported (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2386 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'upgrades/dbpatches')
-rw-r--r--upgrades/dbpatches/1.1beta2_to_1.1beta3/mysql/patch.sql1
-rw-r--r--upgrades/dbpatches/1.1beta2_to_1.1beta3/postgresql/patch.sql1
2 files changed, 2 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.1beta2_to_1.1beta3/mysql/patch.sql b/upgrades/dbpatches/1.1beta2_to_1.1beta3/mysql/patch.sql
index 518f280c..8f77d229 100644
--- a/upgrades/dbpatches/1.1beta2_to_1.1beta3/mysql/patch.sql
+++ b/upgrades/dbpatches/1.1beta2_to_1.1beta3/mysql/patch.sql
@@ -13,3 +13,4 @@ CREATE TABLE history_uint (
) type=InnoDB;
alter table graphs_items add yaxisside int(1) DEFAULT '1' NOT NULL;
+alter table config add refresh_unsupported int(4) DEFAULT '600' NOT NULL;
diff --git a/upgrades/dbpatches/1.1beta2_to_1.1beta3/postgresql/patch.sql b/upgrades/dbpatches/1.1beta2_to_1.1beta3/postgresql/patch.sql
index 8869fc83..35fcc631 100644
--- a/upgrades/dbpatches/1.1beta2_to_1.1beta3/postgresql/patch.sql
+++ b/upgrades/dbpatches/1.1beta2_to_1.1beta3/postgresql/patch.sql
@@ -15,3 +15,4 @@ CREATE TABLE history_uint (
CREATE INDEX history_uint_i_c on history_uint (itemid, clock);
alter table graphs_items add yaxisside int2 DEFAULT '1' NOT NULL;
+alter table config add refresh_unsupported int4 DEFAULT '0' NOT NULL;