1
0
mirror of synced 2024-12-13 14:56:01 +03:00

SchemaTool ignoring 'fixed' option fixed

This commit is contained in:
Metod 2012-11-07 16:31:31 +01:00
parent 09d53f0e58
commit cfee331006

View File

@ -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'];
}