Unsigned only supported by MySQL.

Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
This commit is contained in:
Taylor Otwell
2012-03-04 14:28:49 -06:00
parent f3df013753
commit 46595ce55e
5 changed files with 18 additions and 18 deletions

View File

@@ -65,7 +65,7 @@ class Postgres extends Grammar {
// types to the types used by the database.
$sql = $this->wrap($column).' '.$this->type($column);
$elements = array('unsigned', 'incrementer', 'nullable', 'defaults');
$elements = array('incrementer', 'nullable', 'defaults');
foreach ($elements as $element)
{