Merge pull request #1128 from tobsn/patch-14

added unsigned() description
This commit is contained in:
Dayle Rees 2012-08-21 06:54:33 -07:00
commit 84bf7d662a
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 `$table->blob('data');` | BLOB equivalent to the table
`->nullable()` | Designate that the column allows NULL values `->nullable()` | Designate that the column allows NULL values
`->default($value)` | Declare a default value for a column `->default($value)` | Declare a default value for a column
`->unsigned()` | Set INTEGER to UNSIGNED
> **Note:** Laravel's "boolean" type maps to a small integer column on all database systems. > **Note:** Laravel's "boolean" type maps to a small integer column on all database systems.