oops, there were OIDS in the migrations too...
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Thu, 12 Nov 2020 22:14:24 +0000 (23:14 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Thu, 12 Nov 2020 22:14:24 +0000 (23:14 +0100)
migrations/101-up-leases.sql
migrations/103-up-extensions.sql

index 0c9b538..a22d513 100644 (file)
@@ -14,7 +14,7 @@ CREATE TABLE leases (
 -- xxx for testing
 --    CONSTRAINT future CHECK (t_from > CURRENT_TIMESTAMP),
     CONSTRAINT start_before_end CHECK (t_until > t_from)
-) WITH OIDS;
+);
 
 --
 -- hook to check for overlapping time slots on a given node_id
index c411049..3edf644 100644 (file)
@@ -1,6 +1,6 @@
 CREATE TABLE plc_db_extensions (
     name text NOT NULL PRIMARY KEY,
     version integer NOT NULL
-) WITH OIDS;
+);
 
 UPDATE plc_db_version SET subversion = 103;