From d6125c4ad559ba5e4fd521ef93e9ad91c423ee90 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Wed, 29 Aug 2007 10:24:36 +0000 Subject: [PATCH] By default, when creating new fields... they are unsigned. --- lib/xmldb/classes/XMLDBField.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmldb/classes/XMLDBField.class.php b/lib/xmldb/classes/XMLDBField.class.php index 3bcaa8df53..f7d0d7eed7 100644 --- a/lib/xmldb/classes/XMLDBField.class.php +++ b/lib/xmldb/classes/XMLDBField.class.php @@ -45,7 +45,7 @@ class XMLDBField extends XMLDBObject { parent::XMLDBObject($name); $this->type = NULL; $this->length = NULL; - $this->unsigned = false; + $this->unsigned = true; $this->notnull = false; $this->default = NULL; $this->sequence = false; -- 2.39.5