php artisan migrate:reset not working
This was an issue for me using sqlite. There was a simple fix noted in the irclogs of Laravel!
So under my require-dev or require I placed
//composer.json
"require": {
"laravel/framework": "4.1.*",
"way/generators": "dev-master",
"doctrine/dbal": "~2.3"
},
ran composer update and all was well again!
comments powered by Disqus