db.php 336 B

123456789101112
  1. <?php
  2. return [
  3. 'class' => 'yii\db\Connection',
  4. 'dsn' => 'pgsql:host=localhost;port=5432;dbname=hacienda-notificacion',
  5. 'username' => 'hacienda-notificacion',
  6. 'password' => 'hacienda-notificacion',
  7. 'charset' => 'utf8',
  8. 'enableSchemaCache' => true,
  9. 'schemaCacheDuration' => 60,
  10. 'schemaCache' => 'cache'
  11. ];