cshoffie
cshoffie

Reputation: 255

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

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?

Upvotes: 8

Views: 11921

Answers (1)

Glad To Help
Glad To Help

Reputation: 5387

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

$table->integer('user_id');

Upvotes: 22

Related Questions