summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.4/mysql
diff options
context:
space:
mode:
authoralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-05-25 11:43:01 +0000
committeralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-05-25 11:43:01 +0000
commite88f467a46f2fa7b79fc81c4337d53eb466ca8f5 (patch)
treeacc0874900aff351ebb290fee097de4eabf67c83 /upgrades/dbpatches/1.4/mysql
parent7a6d682289cb5ac539b7280389dbe445b70a3bce (diff)
downloadzabbix-e88f467a46f2fa7b79fc81c4337d53eb466ca8f5.tar.gz
zabbix-e88f467a46f2fa7b79fc81c4337d53eb466ca8f5.tar.xz
zabbix-e88f467a46f2fa7b79fc81c4337d53eb466ca8f5.zip
Changed housekeeper value type in patches.
git-svn-id: svn://svn.zabbix.com/trunk@4179 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'upgrades/dbpatches/1.4/mysql')
-rw-r--r--upgrades/dbpatches/1.4/mysql/patch/housekeeper.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/mysql/patch/housekeeper.sql b/upgrades/dbpatches/1.4/mysql/patch/housekeeper.sql
index 15c88634..f8fe3f8b 100644
--- a/upgrades/dbpatches/1.4/mysql/patch/housekeeper.sql
+++ b/upgrades/dbpatches/1.4/mysql/patch/housekeeper.sql
@@ -2,7 +2,7 @@ CREATE TABLE housekeeper_tmp (
housekeeperid bigint unsigned DEFAULT '0' NOT NULL,
tablename varchar(64) DEFAULT '' NOT NULL,
field varchar(64) DEFAULT '' NOT NULL,
- value integer DEFAULT '0' NOT NULL,
+ value bigint unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (housekeeperid)
) ENGINE=InnoDB;