首页 > 解决方案 > Laravel 迁移错误:找不到基表或视图

问题描述

我收到以下错误。我该如何解决?

未找到基表或视图:1146 表 'account_infos'

移民

public function up()
{
    Schema::create('account_info', function (Blueprint $table) {
        $table->id();
        $table->unsignedBigInteger('users_id');
        $table->foreign('users_id')->references('id')
            ->on('users')->onDelete('cascade');
        $table->unsignedBigInteger('axis_id');
        $table->foreign('axis_id')->references('id')
            ->on('axis')->onDelete('cascade');
        $table->enum('account_type',['legal','rightful']);
        $table->timestamps();
    });
}

标签: phplaravellaravel-migrations

解决方案


只需添加:

    protected $table='account_info';

在你的模型中


推荐阅读