diff options
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/screens.sql')
-rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/screens.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/screens.sql b/upgrades/dbpatches/1.4/postgresql/patch/screens.sql index f3c42074..effc524a 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/screens.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/screens.sql @@ -4,7 +4,7 @@ CREATE TABLE screens_tmp ( hsize integer DEFAULT '1' NOT NULL, vsize integer DEFAULT '1' NOT NULL, PRIMARY KEY (screenid) -); +) with OIDS; insert into screens_tmp select * from screens; drop table screens; |