Blame view

config/db.php 408 Bytes
2049c43e   Alexey Boroda   first commit
1
  <?php
2929939c   Alexey Boroda   -Kind of ready
2
3
4
5
6
      
      return [
          'class'    => 'yii\db\Connection',
          'dsn'      => 'pgsql:host=127.0.0.1;dbname=kite',
          'username' => 'kite',
48a85379   Alexey Boroda   changes from server
7
          'password' => 'WZ5rab',
2929939c   Alexey Boroda   -Kind of ready
8
9
10
11
12
13
14
          'charset'  => 'utf8',
          
          // Schema cache options (for production environment)
          //'enableSchemaCache' => true,
          //'schemaCacheDuration' => 60,
          //'schemaCache' => 'cache',
      ];