我如何定义要查询的表而不必迁移数据库?我已经尝试在模型中进行手动定义,但这无济于事。

口才/模范

class Activity extends Model {
     protected $table = 'log_activity';
}


我的表应该是“ log_activity”,但不是“ activities”,以下是例外

QueryException in Connection.php line 673:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bizoctopus.activities' doesn't exist (SQL: select * from `activities` where `activities`.`id` = 6 limit 1)

最佳答案

我在名为“ providers”的子目录文件夹而不是应用程序文件夹中创建模型文件时出错。

感谢您的帮助。

10-08 12:39