Laravel 4: PHP Fatal error: Call to undefined method Blueprint::int()

cshoffie picture cshoffie · Oct 23, 2013 · Viewed 11.3k times · Source

I've compiled a new installation of Laravel 4 and I'm getting this error after I generate a migration and try to migrate it via artisan:

PHP Fatal error: Call to undefined method Illuminate\Database\Schema\Blueprint::int() in /home/casey/Sites/caseyhoffmann.me/laravel4/app/database/migrations/2013_10_22_232234_create_users_table.php on line 22 {"error":{"type":"Symfony\Component\Debug\Exception\FatalErrorException","message":"Call to undefined method Illuminate\Database\Schema\Blueprint::int()","file":"/home/casey/Sites/caseyhoffmann.me/laravel4/app/database/migrations/2013_10_22_232234_create_users_table.php","line":22}}

I've tried recompiling Laravel but to no avail.

Any ideas or suggestions?

Answer

Glad To Help picture Glad To Help · Oct 23, 2013

Your int() should be replaced with integer() in the migrations file. Like this:

$table->integer('user_id');