diff options
author | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-06-22 18:12:58 +0000 |
---|---|---|
committer | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-06-22 18:12:58 +0000 |
commit | 901b9d2bd5c402e45526e151604afd119c6e0ec1 (patch) | |
tree | 94de1db7561d6cfe82b41cbc803011a2ab932eb0 /upgrades/dbpatches/1.4/postgresql/patch/config.sql | |
parent | f4af73c3a3b19f6f850c2eda0717272ca9b24001 (diff) | |
download | zabbix-901b9d2bd5c402e45526e151604afd119c6e0ec1.tar.gz zabbix-901b9d2bd5c402e45526e151604afd119c6e0ec1.tar.xz zabbix-901b9d2bd5c402e45526e151604afd119c6e0ec1.zip |
- fixed PostgreSQL upgrade patch (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@4353 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/config.sql')
-rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/config.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/config.sql b/upgrades/dbpatches/1.4/postgresql/patch/config.sql index b7f9e2a6..79388480 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/config.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/config.sql @@ -6,7 +6,7 @@ CREATE TABLE config_tmp ( work_period varchar(100) DEFAULT '1-5,00:00-24:00' NOT NULL, alert_usrgrpid bigint DEFAULT '0' NOT NULL, PRIMARY KEY (configid) -); +) with OIDS; insert into config_tmp select 1,alert_history,alarm_history,refresh_unsupported,work_period,0 from config; drop table config; |