diff options
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/sessions.sql')
-rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/sessions.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/sessions.sql b/upgrades/dbpatches/1.4/postgresql/patch/sessions.sql index d9d3d45d..7f96d171 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/sessions.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/sessions.sql @@ -3,7 +3,7 @@ CREATE TABLE sessions_tmp ( userid bigint DEFAULT '0' NOT NULL, lastaccess integer DEFAULT '0' NOT NULL, PRIMARY KEY (sessionid) -); +) with OIDS; insert into sessions_tmp select * from sessions; drop table sessions; |