1
0
mirror of synced 2025-02-20 22:23:14 +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

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