diff --git a/lib/Doctrine/ORM/Tools/SchemaTool.php b/lib/Doctrine/ORM/Tools/SchemaTool.php index be3513423..ec7023075 100644 --- a/lib/Doctrine/ORM/Tools/SchemaTool.php +++ b/lib/Doctrine/ORM/Tools/SchemaTool.php @@ -395,7 +395,13 @@ class SchemaTool unset($mapping['options']['unsigned']); } - + + if (isset($mapping['options']['fixed'])) { + $options['fixed'] = $mapping['options']['fixed']; + + unset($mapping['options']['fixed']); + } + $options['customSchemaOptions'] = $mapping['options']; }