SQLSTATE [42S02]:找不到基表或视图:1146表'laravel_abonamenty2.currencies'不存在

时间:2020-07-29 12:51:48

标签: php sql laravel orm frameworks

我遇到了这个错误

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'laravel_abonamenty2.currencies' doesn't exist (SQL: select `id`, `currency`, `course` from `currencies`)

这是我的控制器,会产生错误。我不知道为什么Laravel在搜索货币表。我的表和迁移称为货币。

public function create()
{
    $users = User::all('showname', 'id');
    $forms = Form::all('id', 'form');
    $currencys = Currency::all('id', 'currency', 'course');
    return view('invoices.create')->with('users', $users, 'forms', 'currencys');
}

这是我的货币模型:

namespace App;

use Illuminate\Database\Eloquent\Model;

class Currency extends Model
{
    protected $fillable = [
        'id', 'currency', 'course',
    ];

    public function invoice()
    {
        return $this->belongsTo('App\Invoice');
    }

    public function proform()
    {
        return $this->belongsTo('App\Proform');
    }
}

这是我的货币迁移

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class Currencys extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('currencys', function (Blueprint $table) {
            $table->increments('id');
            $table->string('currency')->nullable();
            $table->string('course')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('currencys');
    }
}

2 个答案:

答案 0 :(得分:3)

因为currency的复数是货币,而不是货币。 Laravel自动检测模型的snake case plural名称的表名称。 documentation

在模型中,您可以指定另一个表名,例如:

protected $table = 'currencys';

laravel会搜索货币表。

答案 1 :(得分:1)

按照惯例,将使用“蛇格”类的复数名称 作为表名,除非明确指定其他名称。 https://laravel.com/docs/7.x/eloquent#eloquent-model-conventions

在您的情况下,它将Currency(型号名称)转换为复数currencies。因此,如果要自定义表名,

您需要在模型中指定表格的名称。

货币模型

class Currency extends Model
{
  protected $table="currency";
...
}