Merge pull request #1043 from tobsn/patch-10
type boolean is tinyint(1)
This commit is contained in:
commit
4b8ba99211
|
@ -383,7 +383,7 @@ protected function type_decimal(Fluent $column)
|
||||||
*/
|
*/
|
||||||
protected function type_boolean(Fluent $column)
|
protected function type_boolean(Fluent $column)
|
||||||
{
|
{
|
||||||
return 'TINYINT';
|
return 'TINYINT(1)';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue