diff options
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/profiles.sql')
-rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/profiles.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/profiles.sql b/upgrades/dbpatches/1.4/postgresql/patch/profiles.sql index f56a5c0f..02a1d2b8 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/profiles.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/profiles.sql @@ -5,7 +5,7 @@ CREATE TABLE profiles_tmp ( value varchar(255) DEFAULT '' NOT NULL, valuetype integer DEFAULT 0 NOT NULL, PRIMARY KEY (profileid) -); +) with OIDS; CREATE UNIQUE INDEX profiles_1 on profiles_tmp (userid,idx); insert into profiles_tmp select NULL,userid,idx,value,valuetype from profiles; @@ -19,7 +19,7 @@ CREATE TABLE profiles_tmp ( value varchar(255) DEFAULT '' NOT NULL, valuetype integer DEFAULT 0 NOT NULL, PRIMARY KEY (profileid) -); +) with OIDS; CREATE UNIQUE INDEX profiles_1 on profiles_tmp (userid,idx); insert into profiles_tmp select * from profiles; |