如何使用 Yii2 的高级模板使用现有数据库?

How can I use an existing database with the advanced template of Yii2?

我安装了 yii2 高级模板,现在处于迁移点,我应该在此处创建一个新数据库并将应用程序迁移到该数据库。 但是我已经有了一个充满数据的数据库,我想在不修改任何东西的情况下将它与 yii2 一起使用

打开文件

common/config/main.php

并为您的数据库连接添加参数

<?php
return [
    'components' => [
         'db' => [
            'class' => 'yii\db\Connection',
            'dsn' => '',
            'username' => '',
            'password' => '',
            'charset' => 'utf8',
        ], 

    ],
];