Browse Source

Move method into grammar.php instead of duplicating in each grammar

Colin Viebrock 13 years ago
parent
commit
b7d068f2f2

+ 15 - 0
laravel/database/schema/grammars/grammar.php

@@ -39,4 +39,19 @@ abstract class Grammar extends \Laravel\Database\Grammar {
 		return parent::wrap($value);
 	}
 
+	/**
+	 * Get the SQL syntax for indicating if a column is unsigned.
+	 *
+	 * @param  Table   $table
+	 * @param  Fluent  $column
+	 * @return string
+	 */
+	protected function unsigned(Table $table, Fluent $column)
+	{
+		if ($column->type == 'integer' && $column->unsigned)
+		{
+			return ' UNSIGNED';
+		}
+	}
+
 }

+ 0 - 15
laravel/database/schema/grammars/mysql.php

@@ -90,21 +90,6 @@ class MySQL extends Grammar {
 		return $columns;
 	}
 
-	/**
-	 * Get the SQL syntax for indicating if a column is unsigned.
-	 *
-	 * @param  Table   $table
-	 * @param  Fluent  $column
-	 * @return string
-	 */
-	protected function unsigned(Table $table, Fluent $column)
-	{
-		if ($column->type == 'integer' && $column->unsigned)
-		{
-			return ' UNSIGNED';
-		}
-	}
-
 	/**
 	 * Get the SQL syntax for indicating if a column is nullable.
 	 *

+ 0 - 15
laravel/database/schema/grammars/postgres.php

@@ -78,21 +78,6 @@ class Postgres extends Grammar {
 		return $columns;
 	}
 
-	/**
-	 * Get the SQL syntax for indicating if a column is unsigned.
-	 *
-	 * @param  Table   $table
-	 * @param  Fluent  $column
-	 * @return string
-	 */
-	protected function unsigned(Table $table, Fluent $column)
-	{
-		if ($column->type == 'integer' && $column->unsigned)
-		{
-			return ' UNSIGNED';
-		}
-	}
-
 	/**
 	 * Get the SQL syntax for indicating if a column is nullable.
 	 *

+ 0 - 15
laravel/database/schema/grammars/sqlite.php

@@ -104,21 +104,6 @@ class SQLite extends Grammar {
 		return $columns;
 	}
 
-	/**
-	 * Get the SQL syntax for indicating if a column is unsigned.
-	 *
-	 * @param  Table   $table
-	 * @param  Fluent  $column
-	 * @return string
-	 */
-	protected function unsigned(Table $table, Fluent $column)
-	{
-		if ($column->type == 'integer' && $column->unsigned)
-		{
-			return ' UNSIGNED';
-		}
-	}
-
 	/**
 	 * Get the SQL syntax for indicating if a column is nullable.
 	 *

+ 0 - 15
laravel/database/schema/grammars/sqlserver.php

@@ -85,21 +85,6 @@ class SQLServer extends Grammar {
 		return $columns;
 	}
 
-	/**
-	 * Get the SQL syntax for indicating if a column is unsigned.
-	 *
-	 * @param  Table   $table
-	 * @param  Fluent  $column
-	 * @return string
-	 */
-	protected function unsigned(Table $table, Fluent $column)
-	{
-		if ($column->type == 'integer' && $column->unsigned)
-		{
-			return ' UNSIGNED';
-		}
-	}
-
 	/**
 	 * Get the SQL syntax for indicating if a column is nullable.
 	 *