diff database/schema/bugs.sql @ 29:cd36b49f4437

fix. now loads into postgresql92
author David A. Holland
date Sun, 26 May 2013 23:24:45 -0400
parents d4c3bd255653
children 7458a278cb64
line wrap: on
line diff
--- a/database/schema/bugs.sql	Sun May 26 22:13:33 2013 -0400
+++ b/database/schema/bugs.sql	Sun May 26 23:24:45 2013 -0400
@@ -15,7 +15,7 @@
 	confidential boolean	not null,
 
 	-- states
-	state text		not null references states (name);
+	state text		not null references states (name),
 	locked boolean		not null,	-- deny modifications
 
 	-- intended constraint:
@@ -49,4 +49,5 @@
 	fix text		,
 	unformatted text	
 
-) without oids;
+)
+WITHOUT OIDS;