From: stronk7 Date: Wed, 29 Aug 2007 10:24:36 +0000 (+0000) Subject: By default, when creating new fields... they are unsigned. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d6125c4ad559ba5e4fd521ef93e9ad91c423ee90;p=moodle.git By default, when creating new fields... they are unsigned. --- 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;