Merge pull request #370 from cviebrock/develop
Add unsigned() modifier, so you can create unsigned integer columns.
This commit is contained in:
commit
ebcae547fa
|
@ -39,4 +39,19 @@ public function wrap($value)
|
||||||
return parent::wrap($value);
|
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';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -77,7 +77,7 @@ protected function columns(Table $table)
|
||||||
// types to the correct types.
|
// types to the correct types.
|
||||||
$sql = $this->wrap($column).' '.$this->type($column);
|
$sql = $this->wrap($column).' '.$this->type($column);
|
||||||
|
|
||||||
$elements = array('nullable', 'defaults', 'incrementer');
|
$elements = array('unsigned', 'nullable', 'defaults', 'incrementer');
|
||||||
|
|
||||||
foreach ($elements as $element)
|
foreach ($elements as $element)
|
||||||
{
|
{
|
||||||
|
|
|
@ -65,7 +65,7 @@ protected function columns(Table $table)
|
||||||
// types to the types used by the database.
|
// types to the types used by the database.
|
||||||
$sql = $this->wrap($column).' '.$this->type($column);
|
$sql = $this->wrap($column).' '.$this->type($column);
|
||||||
|
|
||||||
$elements = array('incrementer', 'nullable', 'defaults');
|
$elements = array('unsigned', 'incrementer', 'nullable', 'defaults');
|
||||||
|
|
||||||
foreach ($elements as $element)
|
foreach ($elements as $element)
|
||||||
{
|
{
|
||||||
|
|
|
@ -91,7 +91,7 @@ protected function columns(Table $table)
|
||||||
// types to the types used by the database.
|
// types to the types used by the database.
|
||||||
$sql = $this->wrap($column).' '.$this->type($column);
|
$sql = $this->wrap($column).' '.$this->type($column);
|
||||||
|
|
||||||
$elements = array('nullable', 'defaults', 'incrementer');
|
$elements = array('unsigned', 'nullable', 'defaults', 'incrementer');
|
||||||
|
|
||||||
foreach ($elements as $element)
|
foreach ($elements as $element)
|
||||||
{
|
{
|
||||||
|
|
|
@ -72,7 +72,7 @@ protected function columns(Table $table)
|
||||||
// types to the types used by the database.
|
// types to the types used by the database.
|
||||||
$sql = $this->wrap($column).' '.$this->type($column);
|
$sql = $this->wrap($column).' '.$this->type($column);
|
||||||
|
|
||||||
$elements = array('incrementer', 'nullable', 'defaults');
|
$elements = array('unsigned', 'incrementer', 'nullable', 'defaults');
|
||||||
|
|
||||||
foreach ($elements as $element)
|
foreach ($elements as $element)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue