Commit 5716b4da authored by Tobsn's avatar Tobsn

type boolean is tinyint(1)

switched from default "tinyint" which creates a tinyint(4) to the
standard mysql boolean type "tinyint(1)"
parent 7256dc2a
...@@ -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