1
0
mirror of synced 2025-01-18 06:21:40 +03:00

added unsigned mapping to SchemaTool options

This commit is contained in:
Sebastian Bauer 2012-11-05 19:49:16 +01:00
parent ff80e99cc9
commit a27be2fab6

View File

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