我正在尝试使用 yii 迁移系统,但是当我执行这个命令时我遇到了这个错误:
yiic migrate create add_table_test
我收到此错误:
exception 'CException' with message 'Property CConsoleApplication.defaultController" is not defined'
(CCompenent.php:173)
但是我在我的配置文件中定义了一个 defaultController:
'basePath'=>$rootPath,
'defaultController' => 'person/index',
'homeUrl'=>array('/me'),
我花了几个小时在谷歌上寻找,但我找不到解决方案。
有人知道这个问题吗?