Commit 7354b5fc authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #824 from tobsn/patch-1

Added UNSIGNED to mysql grammar inrementer()
parents 1f9f064b e0d491cb
......@@ -143,7 +143,7 @@ class MySQL extends Grammar {
{
if ($column->type == 'integer' and $column->increment)
{
return ' AUTO_INCREMENT PRIMARY KEY';
return ' UNSIGNED AUTO_INCREMENT PRIMARY KEY';
}
}
......
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