db.php
1.19 KB
<?php
return [
'db' => [
'dsn' => 'mysql:host=localhost;dbname=base',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => 'fv_',
// Duration of schema cache.
'schemaCacheDuration' => YII_ENV_DEV ? 180 : 86400,
// Name of the cache component used to store schema information
'schemaCache' => 'cache',
'enableSchemaCache' => !YII_ENV_DEV,
//queryCache
'queryCache' => 'cache',
'queryCacheDuration' => YII_ENV_DEV ? 180 : 21600,
'enableQueryCache' => !YII_ENV_DEV,
],
'db-core' => [
'dsn' => 'mysql:host=localhost;dbname=base',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => 'fv_',
// Duration of schema cache.
'schemaCacheDuration' => YII_ENV_DEV ? 180 : 86400,
// Name of the cache component used to store schema information
'schemaCache' => 'cache',
'enableSchemaCache' => !YII_ENV_DEV,
//queryCache
'queryCache' => 'cache',
'queryCacheDuration' => YII_ENV_DEV ? 180 : 21600,
'enableQueryCache' => !YII_ENV_DEV,
],
];