trailing spaces in sql schema
[plcapi.git] / migrations / 101-up-leases.sql
index 42ef63f..a22d513 100644 (file)
@@ -1,6 +1,3 @@
--- $Id$
--- $URL$
-
 -- we're using the 'lease' nodetype to model reservable nodes
 INSERT INTO node_types VALUES ('reservable');
 -- also the dummynet node_type is obsolete
@@ -17,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