summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-05-31 16:59:55 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-05-31 16:59:55 +0000
commit3bcee84a57b7aaf3bce554bdc6269c0c03cdc9e7 (patch)
tree5cce6682cb55fd48eeee920918401a46b13aaa55 /upgrades/dbpatches
parentb29b6572e01261bf108f0897b1f61ced91e7096e (diff)
downloadzabbix-3bcee84a57b7aaf3bce554bdc6269c0c03cdc9e7.tar.gz
zabbix-3bcee84a57b7aaf3bce554bdc6269c0c03cdc9e7.tar.xz
zabbix-3bcee84a57b7aaf3bce554bdc6269c0c03cdc9e7.zip
- added column screens_items.rowspan (Alexei)
- support of rowspan in screens (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1800 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'upgrades/dbpatches')
-rw-r--r--upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql1
-rw-r--r--upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql1
2 files changed, 2 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql b/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql
new file mode 100644
index 00000000..6d704c4d
--- /dev/null
+++ b/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql
@@ -0,0 +1 @@
+alter table screens_items add rowspan int(4) DEFAULT '0' NOT NULL;
diff --git a/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql b/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql
new file mode 100644
index 00000000..9a29f520
--- /dev/null
+++ b/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql
@@ -0,0 +1 @@
+alter table screens_items add rowspan int4 DEFAULT '0' NOT NULL;