Merge pull request #1043 from tobsn/patch-10

type boolean is tinyint(1)
This commit is contained in:
Dayle Rees 2012-08-12 12:43:15 -07:00
commit 4b8ba99211

View File

@ -383,7 +383,7 @@ class MySQL extends Grammar {
*/
protected function type_boolean(Fluent $column)
{
return 'TINYINT';
return 'TINYINT(1)';
}
/**