Added UNSIGNED to mysql grammar inrementer()

Added UNSIGNED to the mysql grammar file because auto increment fields
only run upwards, it's a waste of space to provide negative values by
the default SIGNED state of INT.
This commit is contained in:
Tobias Orterer 2012-06-16 19:46:50 -07:00
parent 681f80eafb
commit e0d491cb15
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ protected function incrementer(Table $table, Fluent $column)
{
if ($column->type == 'integer' and $column->increment)
{
return ' AUTO_INCREMENT PRIMARY KEY';
return ' UNSIGNED AUTO_INCREMENT PRIMARY KEY';
}
}