我正在尝试在基于 Yii 的应用程序中安装用户模块。为此,我必须从以下位置迁移文件:
webapp/protected/modules/user/migrations
我试图运行yiic migrate --migrationPath=user.migrations
,但出现错误:
the migration directory does not exist: user.migrations
我读到我必须将 user.migrations 设置为别名,但我不知道该怎么做。
我还读到,迁移的默认文件夹由basePath
值确定,在主配置文件 ( protected/config/main.php
) 中设置。我已经改变了它,它仍然不能正常工作。
有什么问题?