added unsigned() description

was missing…
This commit is contained in:
Tobsn 2012-08-21 14:09:41 +02:00
parent f31c6dc313
commit fa0fcff346
1 changed files with 1 additions and 0 deletions

View File

@ -71,6 +71,7 @@ ## Adding Columns
`$table->blob('data');` | BLOB equivalent to the table
`->nullable()` | Designate that the column allows NULL values
`->default($value)` | Declare a default value for a column
`->unsigned()` | Set INTERGER to UNSIGNED
> **Note:** Laravel's "boolean" type maps to a small integer column on all database systems.