我使用 Laravel 5.2,并通过运行创建了数据库表
php artisan make:migration create_categories_table --create=categories
和
php artisan make:migration create_posts_table --create=posts
然后我运行php artisan migrate
,并在数据库中创建表。但是在我对迁移文件“create_posts_table.php”进行了一些更改并运行之后
php artisan migrate:rollback
我收到一个错误:
[Symfony\Component\Debug\Exception\FatalErrorException]
找不到类'CreatePostsTable'
PHP 致命错误:在 E:\programfiles\xampp\htdocs\deneme\vendor\laravel\framework\src\Illuminate\Database 中找不到类'CreatePostsTable' \Migrations\Migrator.php 在第 336 行
我试过了composer update
,composer dump-autoload
但这并没有解决问题。