From fa0fcff34657e8a354bec6c872c0448a04b260bb Mon Sep 17 00:00:00 2001 From: Tobsn Date: Tue, 21 Aug 2012 14:09:41 +0200 Subject: [PATCH 1/2] added unsigned() description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit was missing… --- laravel/documentation/database/schema.md | 1 + 1 file changed, 1 insertion(+) diff --git a/laravel/documentation/database/schema.md b/laravel/documentation/database/schema.md index ff25ab65..19565c89 100644 --- a/laravel/documentation/database/schema.md +++ b/laravel/documentation/database/schema.md @@ -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. From 967d9898ae6448a24c773db876c95b7fd60783cf Mon Sep 17 00:00:00 2001 From: Tobsn Date: Tue, 21 Aug 2012 14:11:25 +0200 Subject: [PATCH 2/2] dann typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit i had one job… --- laravel/documentation/database/schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/database/schema.md b/laravel/documentation/database/schema.md index 19565c89..904edbba 100644 --- a/laravel/documentation/database/schema.md +++ b/laravel/documentation/database/schema.md @@ -71,7 +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 +`->unsigned()` | Set INTEGER to UNSIGNED > **Note:** Laravel's "boolean" type maps to a small integer column on all database systems.