I\'m setting up a new app with laravel (Laravel 4), and having some issues setting up the database via migrations.
I made a migration file with:
artisan
Resolved.
Solution was simply to edit the local/database.php (or production/database.php etc), making sure that the migrations path variable is pointing to the location that migrate:make
is creating the migration files, just change
'application' => __DIR__.'/../database/migrations',
to
'application' => DIR.'/../../database/migrations',