1
0
mirror of synced 2025-02-07 15:59:27 +03:00

Merge pull request #503 from sebastianbauer/master

added unsigned mapping to SchemaTool options
This commit is contained in:
Guilherme Blanco 2012-11-05 16:16:25 -08:00
commit 863d14a61a

View File

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