golden hour
/home/phakp/public_html/bkp_full/old_site_bkp/tests/mocks/database/config
⬆️ Go Up
Upload
File/Folder
Size
Actions
mysql.php
656 B
Del
OK
mysqli.php
661 B
Del
OK
pdo
-
Del
OK
pgsql.php
666 B
Del
OK
sqlite.php
736 B
Del
OK
Edit: pgsql.php
<?php return array( // Typical Database configuration 'pgsql' => array( 'dsn' => '', 'hostname' => 'localhost', 'username' => 'postgres', 'password' => '', 'database' => 'ci_test', 'dbdriver' => 'postgre' ), // Database configuration with failover 'pgsql_failover' => array( 'dsn' => '', 'hostname' => 'localhost', 'username' => 'not_travis', 'password' => 'wrong password', 'database' => 'not_ci_test', 'dbdriver' => 'postgre', 'failover' => array( array( 'dsn' => '', 'hostname' => 'localhost', 'username' => 'postgres', 'password' => '', 'database' => 'ci_test', 'dbdriver' => 'postgre', ) ) ) );
Save