Laravel migration error: Base table or view not found
Laravel migration error: Base table or view not found
我收到以下错误。我该如何解决?
Base table or view not found: 1146 Table '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();
});
}
只需添加:
protected $table='account_info';
在您的模型中
我收到以下错误。我该如何解决?
Base table or view not found: 1146 Table '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();
});
}
只需添加:
protected $table='account_info';
在您的模型中