Commit 8d13bf9c by Dayle Rees

removing unsigned from mysql grammer due to bug

Signed-off-by: Dayle Rees <thepunkfan@gmail.com>
parent 7af0304f
......@@ -143,7 +143,7 @@ class MySQL extends Grammar {
{
if ($column->type == 'integer' and $column->increment)
{
return ' UNSIGNED AUTO_INCREMENT PRIMARY KEY';
return ' AUTO_INCREMENT PRIMARY KEY';
}
}
......@@ -418,4 +418,4 @@ class MySQL extends Grammar {
return 'BLOB';
}
}
\ No newline at end of file
}
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