gpt4 book ai didi

php - 迁移文件后找不到 Laravel 类

转载 作者:搜寻专家 更新时间:2023-10-31 20:36:55 24 4
gpt4 key购买 nike

我将 Laravel Stapler 用于图像目的,在迁移新表后,我尝试 artisan migrate:refresh 然后我看到这个错误:

[Symfony\Component\Debug\Exception\FatalErrorException] Class 'AddPhotoFieldsToStaffTable' not found

但是,我可以在我的迁移文件夹中看到该文件并使用 php artisan migrate,在尝试 --refresh 之前,它已成功迁移!

生成的文件是:

class AddPhotoFieldsToStaffTable extends Migration {

/**
* Make changes to the table.
*
* @return void
*/
public function up()
{
Schema::table('staff', function(Blueprint $table) {

$table->string('photo_file_name')->nullable();
$table->integer('photo_file_size')->nullable()->after('photo_file_name');
$table->string('photo_content_type')->nullable()->after('photo_file_size');
$table->timestamp('photo_updated_at')->nullable()->after('photo_content_type');

});

}

/**
* Revert the changes to the table.
*
* @return void
*/
public function down()
{
Schema::table('staff', function(Blueprint $table) {

$table->dropColumn('photo_file_name');
$table->dropColumn('photo_file_size');
$table->dropColumn('photo_content_type');
$table->dropColumn('photo_updated_at');

});
}

}

如有任何帮助,我们将不胜感激。

最佳答案

使用 composer dumpautoload 解决了这个问题。

关于php - 迁移文件后找不到 Laravel 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32935578/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com