diff options
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/conditions.sql')
-rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/conditions.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/conditions.sql b/upgrades/dbpatches/1.4/postgresql/patch/conditions.sql index e0f8f834..6edf7e90 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/conditions.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/conditions.sql @@ -5,7 +5,7 @@ CREATE TABLE conditions_tmp ( operator integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (conditionid) -); +) with OIDS; CREATE INDEX conditions_1 on conditions_tmp (actionid); insert into conditions_tmp select * from conditions; |