-
-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are an error at migrations #36
Comments
Тут проблема не в расширении. На данный момент yii2 предлагает два способа настроить миграции для своих приложений. Первый, когда путь к миграциям указывается через Я выбрал второй. Он лучше подходит для оформления миграций на стороне расширения. В приложении конфиг для нескольких источников может выглядеть так: 'controllerMap' => [
'migrate' => [
'class' => \yii\console\controllers\MigrateController::class,
'migrationPath' => null,
'migrationNamespaces' => [
'app\migrations',
'zhuravljov\yii\queue\db\migrations',
],
],
], Если вы у себя в проекте используете class m161119_140200_queue extends \zhuravljov\yii\queue\db\migrations\M161119140200Queue {} |
Спасибо! Не знал, буду использовать второй вариант теперь 👍 |
php yii migrate --migrationPath=@zhuravljov/yii/queue/db/migrations
There are two migrations, choose yes. Then...
Error:
PHP Fatal error: Class 'M161119140200Queue' not found in /home/admin/web/site.ru/public_shtml/vendor/yiisoft/yii2/console/controllers/MigrateController.php
Yii 2.0.11.2
The text was updated successfully, but these errors were encountered: