1
0
mirror of synced 2025-02-21 22:53:15 +03:00

Merge pull request #509 from smottt/master

SchemaTool ignoring 'fixed' option
This commit is contained in:
Guilherme Blanco 2012-11-07 13:58:56 -08:00
commit 182ed07a41

View File

@ -396,6 +396,12 @@ class SchemaTool
unset($mapping['options']['unsigned']);
}
if (isset($mapping['options']['fixed'])) {
$options['fixed'] = $mapping['options']['fixed'];
unset($mapping['options']['fixed']);
}
$options['customSchemaOptions'] = $mapping['options'];
}