diff --git a/lib/Doctrine/ORM/Tools/SchemaTool.php b/lib/Doctrine/ORM/Tools/SchemaTool.php index 025109e8a..be3513423 100644 --- a/lib/Doctrine/ORM/Tools/SchemaTool.php +++ b/lib/Doctrine/ORM/Tools/SchemaTool.php @@ -390,6 +390,12 @@ class SchemaTool unset($mapping['options']['comment']); } + if (isset($mapping['options']['unsigned'])) { + $options['unsigned'] = $mapping['options']['unsigned']; + + unset($mapping['options']['unsigned']); + } + $options['customSchemaOptions'] = $mapping['options']; }