From 8d13bf9c5a8c2b70143f88af7c13818849452c46 Mon Sep 17 00:00:00 2001 From: Dayle Rees Date: Fri, 22 Jun 2012 16:25:50 +0100 Subject: [PATCH] removing unsigned from mysql grammer due to bug Signed-off-by: Dayle Rees --- laravel/database/schema/grammars/mysql.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/database/schema/grammars/mysql.php b/laravel/database/schema/grammars/mysql.php index d0ba45ad..2f390f08 100644 --- a/laravel/database/schema/grammars/mysql.php +++ b/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'; } -} \ No newline at end of file +}