summaryrefslogtreecommitdiffstats
path: root/upgrades
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2003-04-06 14:45:02 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2003-04-06 14:45:02 +0000
commit7d565dba7f4fb5298ed6f7230f9f97e2e7ec3401 (patch)
tree1c6b79d96b6f550caaf4b4226cd8b619e7d0ba7a /upgrades
parent4d4eb2ca7581b62e0069d3701a2cad9e6ad520f0 (diff)
downloadzabbix-7d565dba7f4fb5298ed6f7230f9f97e2e7ec3401.tar.gz
zabbix-7d565dba7f4fb5298ed6f7230f9f97e2e7ec3401.tar.xz
zabbix-7d565dba7f4fb5298ed6f7230f9f97e2e7ec3401.zip
- different styles for user-defined graphs (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@747 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'upgrades')
-rw-r--r--upgrades/dbpatches/1.0beta8_to_1.0beta9/mysql/patch.sql2
-rw-r--r--upgrades/dbpatches/1.0beta8_to_1.0beta9/postgresql/patch.sql2
2 files changed, 4 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.0beta8_to_1.0beta9/mysql/patch.sql b/upgrades/dbpatches/1.0beta8_to_1.0beta9/mysql/patch.sql
index 9c0437b5..20a60d39 100644
--- a/upgrades/dbpatches/1.0beta8_to_1.0beta9/mysql/patch.sql
+++ b/upgrades/dbpatches/1.0beta8_to_1.0beta9/mysql/patch.sql
@@ -1,6 +1,8 @@
alter table services modify goodsla double(3,2) default '99.9' not null;
alter table services add sortorder int(4) default '0' not null;
+alter table graphs_items add drawtype int(4) default '0' not null;
+
--
-- Table structure for table 'screens'
--
diff --git a/upgrades/dbpatches/1.0beta8_to_1.0beta9/postgresql/patch.sql b/upgrades/dbpatches/1.0beta8_to_1.0beta9/postgresql/patch.sql
index 6b9693f7..689af611 100644
--- a/upgrades/dbpatches/1.0beta8_to_1.0beta9/postgresql/patch.sql
+++ b/upgrades/dbpatches/1.0beta8_to_1.0beta9/postgresql/patch.sql
@@ -1,6 +1,8 @@
alter table services modify goodsla float8 default '99.9' not null;
alter table services add sortorder int4 default '0' not null;
+alter table graphs_items add drawtype int4 default '0' not null;
+
--
-- Table structure for table 'screens'
--