Расширенный шаблон Yii2 - SQLSTATE [HY000] [1049] Неизвестная база данных «тест» - PullRequest
0 голосов
/ 12 февраля 2019

Я пытаюсь настроить vagrant, но база данных почему-то не существует.Однако команда migrate работает.

Main-local.php:

return [
    'components' => [
        'db' => [
            'class' => 'yii\db\Connection',
            'dsn' => 'mysql:host=localhost;dbname=test',
            'username' => 'root',
            'password' => '',
            'charset' => 'utf8',
        ],
        'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            'viewPath' => '@common/mail',
            // send all mails to a file by default. You have to set
            // 'useFileTransport' to false and configure a transport
            // for the mailer to send real emails.
            'useFileTransport' => true,
        ],
    ],
];
...