blob: 1444b0066b455d2d4a50c532319d9787eeeff074 [file] [log] [blame]
Taufan Adityaee2f5d02012-03-30 06:29:11 +07001<?php
2
3return array(
Andrey Andreevf243ce12012-06-09 23:34:21 +03004
Taufan Adityaee2f5d02012-03-30 06:29:11 +07005 // Typical Database configuration
6 'pgsql' => array(
7 'dsn' => '',
8 'hostname' => 'localhost',
9 'username' => 'postgres',
10 'password' => '',
11 'database' => 'ci_test',
Andrey Andreevf243ce12012-06-09 23:34:21 +030012 'dbdriver' => 'postgre'
Taufan Adityaee2f5d02012-03-30 06:29:11 +070013 ),
14
15 // Database configuration with failover
16 'pgsql_failover' => array(
17 'dsn' => '',
18 'hostname' => 'localhost',
19 'username' => 'not_travis',
20 'password' => 'wrong password',
21 'database' => 'not_ci_test',
22 'dbdriver' => 'postgre',
23 'failover' => array(
24 array(
25 'dsn' => '',
26 'hostname' => 'localhost',
27 'username' => 'postgres',
28 'password' => '',
29 'database' => 'ci_test',
30 'dbdriver' => 'postgre',
Andrey Andreevf243ce12012-06-09 23:34:21 +030031 )
32 )
33 )
Taufan Adityaee2f5d02012-03-30 06:29:11 +070034);