123456789101112 |
- <?php
- return [
- 'class' => 'yii\db\Connection',
- 'dsn' => 'pgsql:host=localhost;port=5432;dbname=hacienda-notificacion',
- 'username' => 'hacienda-notificacion',
- 'password' => 'hacienda-notificacion',
- 'charset' => 'utf8',
- 'enableSchemaCache' => true,
- 'schemaCacheDuration' => 60,
- 'schemaCache' => 'cache'
- ];
|