diff options
| author | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-05-25 11:43:01 +0000 |
|---|---|---|
| committer | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-05-25 11:43:01 +0000 |
| commit | e88f467a46f2fa7b79fc81c4337d53eb466ca8f5 (patch) | |
| tree | acc0874900aff351ebb290fee097de4eabf67c83 /upgrades | |
| parent | 7a6d682289cb5ac539b7280389dbe445b70a3bce (diff) | |
| download | zabbix-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')
| -rw-r--r-- | upgrades/dbpatches/1.4/mysql/patch/housekeeper.sql | 2 | ||||
| -rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/housekeeper.sql | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/upgrades/dbpatches/1.4/postgresql/patch/housekeeper.sql b/upgrades/dbpatches/1.4/postgresql/patch/housekeeper.sql index a05cb024..bccc8e5f 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/housekeeper.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/housekeeper.sql @@ -2,7 +2,7 @@ CREATE TABLE housekeeper_tmp ( housekeeperid bigint DEFAULT '0' NOT NULL, tablename varchar(64) DEFAULT '' NOT NULL, field varchar(64) DEFAULT '' NOT NULL, - value integer DEFAULT '0' NOT NULL, + value bigint DEFAULT '0' NOT NULL, PRIMARY KEY (housekeeperid) ); |
