From 80956c94c16eee14f95fcb43f178d704b6a4bc2a Mon Sep 17 00:00:00 2001 From: hugetoad Date: Fri, 23 Dec 2005 11:48:04 +0000 Subject: - added configurable number of plain text elements for screens (Alexei) - added screens_items.elements (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2419 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- upgrades/dbpatches/1.1beta4_to_1.1beta5/mysql/patch.sql | 1 + upgrades/dbpatches/1.1beta4_to_1.1beta5/postgresql/patch.sql | 1 + 2 files changed, 2 insertions(+) create mode 100644 upgrades/dbpatches/1.1beta4_to_1.1beta5/mysql/patch.sql create mode 100644 upgrades/dbpatches/1.1beta4_to_1.1beta5/postgresql/patch.sql (limited to 'upgrades') diff --git a/upgrades/dbpatches/1.1beta4_to_1.1beta5/mysql/patch.sql b/upgrades/dbpatches/1.1beta4_to_1.1beta5/mysql/patch.sql new file mode 100644 index 00000000..baed4d59 --- /dev/null +++ b/upgrades/dbpatches/1.1beta4_to_1.1beta5/mysql/patch.sql @@ -0,0 +1 @@ +alter table screens_items add elements int(4) DEFAULT '25' NOT NULL; diff --git a/upgrades/dbpatches/1.1beta4_to_1.1beta5/postgresql/patch.sql b/upgrades/dbpatches/1.1beta4_to_1.1beta5/postgresql/patch.sql new file mode 100644 index 00000000..f88dc578 --- /dev/null +++ b/upgrades/dbpatches/1.1beta4_to_1.1beta5/postgresql/patch.sql @@ -0,0 +1 @@ +alter table screens_items add elements int4 DEFAULT '25' NOT NULL; -- cgit