Illuminate \ Database \ QueryException (42S02)
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'influencingquotes.posts' doesn't exist (SQL: select count(*) as aggregate from posts
where quote_title
= gtav hyhui)
I am not sure why this Database\QueryException is occurring :(
答案 0 :(得分:0)
The Error says that the posts
table is missing, maybe you forget to run:
php artisan migrate
答案 1 :(得分:0)
1.如果在数据库中,您无法找到帖子表 然后,您需要尝试为其找到迁移文件 laravel 5位于project_root_dir \ database \ migrations中 然后通过命令行
php artisan migrate
2.如果在数据库中存在表,但名称错误,例如名称是post 在post model中,您需要指定表名
protected $table = 'post';
如果它没有帮助,你需要写信给我们 1.你在数据库中看到了什么,那里存在哪些表或视图 2.您在project_root_dir \ database \ migrations目录中看到的文件。