I have a migration I'm trying to run. I was able to create it using:
php artisan migrate:make name_of_migration
The files show up properly and everything, but when I try and run
php artisan migrate
I just get a bunch of php spewing out (Looks like one big array/object or something). I left it running for 36 hours and it didn't end so I'm thinking I must have done something wrong. Does anyone have any idea why this might be happening? (I haven't worked with laravel/artisan much so I don't know the ins and outs, such as if there are log files or not, so any advice would be appreciated)
It was recommended I use
php artisan migrate:status
Not only did this spew out an array as before, but it also gave the following:
[InvalidArgumentException]
Command "migrate:status" is not defined.
Did you mean one of these?
migrate:reset
migrate:refresh
migrate:rollback
migrate:install
migrate
migrate:make
migrate:publish
Also, It should be noted that I'm using Laravel 4.2 and have inherited this site from someone else. I'm trying to figure out exactly what happened, but it looks like the migration issue might have been around before since even after I deleted the new migration and ran migrate it started spewing php out.