]> git.mjollnir.org Git - moodle.git/commitdiff
By default, when creating new fields... they are unsigned.
authorstronk7 <stronk7>
Wed, 29 Aug 2007 10:24:36 +0000 (10:24 +0000)
committerstronk7 <stronk7>
Wed, 29 Aug 2007 10:24:36 +0000 (10:24 +0000)
lib/xmldb/classes/XMLDBField.class.php

index 3bcaa8df53f3eeac38657bc7e52c0b1a64574262..f7d0d7eed7b2b36fc1acb52e972f893a470b1389 100644 (file)
@@ -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;