db.php 436 B

123456789101112131415
  1. <?php
  2. return [
  3. 'class' => 'yii\db\Connection',
  4. 'dsn' => 'mysql:host=' . $_ENV['DB_HOST'] . ';dbname=' . $_ENV['DB_NAME'],
  5. 'username' => $_ENV['DB_USER'],
  6. 'password' => $_ENV['DB_PASS'],
  7. 'tablePrefix' => $_ENV['DB_TBL_PREFIX'],
  8. 'charset' => 'utf8',
  9. // Schema cache options (for production environment)
  10. //'enableSchemaCache' => true,
  11. //'schemaCacheDuration' => 60,
  12. //'schemaCache' => 'cache',
  13. ];