Browse Source

removing unsigned from mysql grammer due to bug

Signed-off-by: Dayle Rees <thepunkfan@gmail.com>
Dayle Rees 12 years ago
parent
commit
8d13bf9c5a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/database/schema/grammars/mysql.php

+ 2 - 2
laravel/database/schema/grammars/mysql.php

@@ -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';
 	}
 
-}
+}