Commit 4b8ba992 by Dayle Rees

Merge pull request #1043 from tobsn/patch-10

type boolean is tinyint(1)
parents e0338f36 5716b4da
...@@ -383,7 +383,7 @@ class MySQL extends Grammar { ...@@ -383,7 +383,7 @@ class MySQL extends Grammar {
*/ */
protected function type_boolean(Fluent $column) protected function type_boolean(Fluent $column)
{ {
return 'TINYINT'; return 'TINYINT(1)';
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment