db.php 349 B

12345678910111213
  1. <?php
  2. return [
  3. 'class' => 'yii\db\Connection',
  4. 'dsn' => 'pgsql:host=localhost;dbname=yager-local',
  5. 'username' => 'yager',
  6. 'password' => 'yager',
  7. 'charset' => 'utf8',
  8. // Schema cache options (for production environment)
  9. //'enableSchemaCache' => true,
  10. //'schemaCacheDuration' => 60,
  11. //'schemaCache' => 'cache',
  12. ];