type boolean is tinyint(1)
switched from default "tinyint" which creates a tinyint(4) to the standard mysql boolean type "tinyint(1)"
This commit is contained in:
@@ -383,7 +383,7 @@ class MySQL extends Grammar {
|
||||
*/
|
||||
protected function type_boolean(Fluent $column)
|
||||
{
|
||||
return 'TINYINT';
|
||||
return 'TINYINT(1)';
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user