db-config.php 312 B

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