LoginSignup
0
0

More than 3 years have passed since last update.

Laravel 6.x 【エラー】 Base table or view not found: 1146 Table 対応方法

Posted at

制作環境

Windows 10
Laravel : 6.18.35
Laravel/ui : 1.0
Laravel-mix : 5.0.1
Bootstrap : 4.0.0
MDBootstrap : 4.19.1
chart.js : 2.9.3
XAMPP
PHP : 7.4.3
Visual Studio Code

はじめに

この記事はプログラミングをはじめたばかりの素人が、できたことをメモするのに利用しています。
内容には誤りがあるかもしれません。

Base table or view not found: 1146 Table

発生のタイミング 内容・症状
php artisan コマンドでオリジナルコマンドにてテーブルの作成をした時に発生。 テーブルの作成がエラーでできない。

原因

参照しにいったテーブルが見つからない為。

解決方法

作成したテーブルのモデルに以下を追記。

protected $table = 'テーブル名';
0
0
1

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