removing unsigned from mysql grammer due to bug
Signed-off-by: Dayle Rees <thepunkfan@gmail.com>
This commit is contained in:
parent
7af0304fe8
commit
8d13bf9c5a
|
@ -143,7 +143,7 @@ protected function incrementer(Table $table, Fluent $column)
|
|||
{
|
||||
if ($column->type == 'integer' and $column->increment)
|
||||
{
|
||||
return ' UNSIGNED AUTO_INCREMENT PRIMARY KEY';
|
||||
return ' AUTO_INCREMENT PRIMARY KEY';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -418,4 +418,4 @@ protected function type_blob(Fluent $column)
|
|||
return 'BLOB';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue