2014-01-04 06:28:33 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
2014-03-16 12:46:16 +08:00
|
|
|
'class' => 'yii\db\Connection',
|
|
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2basic',
|
|
|
|
'username' => 'root',
|
|
|
|
'password' => '',
|
|
|
|
'charset' => 'utf8',
|
2017-06-30 23:00:32 +08:00
|
|
|
|
|
|
|
// Schema cache options (for production environment)
|
|
|
|
//'enableSchemaCache' => true,
|
|
|
|
//'schemaCacheDuration' => 60,
|
|
|
|
//'schemaCache' => 'cache',
|
2014-01-04 06:28:33 +08:00
|
|
|
];
|