0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

laravelのModelでテーブル名は明示したほうが良さそうという話

Posted at

laravelのリレーションの話

リレーションでuserに関連するuser_informationsを取得したい
リレーションを貼る

    public function user_informations()
    {
        return $this->hasOne(UserInformation::class);
    }

withメソッドを使おうと思っていたらこんなエラーがでた。

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'laravel_local.user_information' doesn't exist (SQL: select * from `user_information` where `user_information`.`user_id` in (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))

テーブルが見つからないらしい。

user_informationを探しているが目的のテーブル名はuser_informationsだ。

その目的のテーブルのもmodelがこれ↓

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class UserInformation extends Model
{
    use HasFactory;
}

laravelはテーブル名が指定されてない場合model名をスネークケースにして複数形にしたものをテーブル名として取得するが
どうやらまれに複数系を認識できなかったりするらしい。
(informationが普通は不可算名詞でinformationsにはならないから?)

なのでこうする

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class UserInformation extends Model
{
    use HasFactory;
    protected $table = 'user_informations';
}

protected $table =とすることでテーブル名を明示できる。

これでエラーは解決。

今日の教訓

たまにmodelがテーブルを認識できないことがあるのでテーブル名は明示したほうがいいのかも。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?