无法在自定义控制台命令Yii中创建模型类的实例

时间:2015-01-13 13:26:23

标签: php activerecord yii command-line-interface

我尝试在控制台命令中创建某个模型的实例,但首先我得到关于Yii无法找到模型类的错误,然后我这样做

Yii::import('application.models.*');

,现在我发现了这个错误

'The table "{{user}}" for active record class "User" cannot be found in the database.'

在名为tbl_user的数据库表中。 我尝试搜索其他相关主题,但我没有找到解决此问题的方法。 这是link to my model class

这是link to my config file 我认为,问题不在配置文件中,因为迁移命令正常工作。

1 个答案:

答案 0 :(得分:1)

添加db config(控制台文件)

"tablePrefix"=>"tbl_"