cmc-sales/app/config/database_stg.php

15 lines
288 B
PHP
Raw Normal View History

2020-07-13 23:00:05 -07:00
<?php
class DATABASE_CONFIG {
var $default = array(
'driver' => 'mysql',
'persistent' => false,
2025-08-07 20:31:27 -07:00
'host' => 'db-staging',
'login' => 'cmc_staging',
'password' => 'staging_password',
'database' => 'cmc_staging',
2020-07-13 23:00:05 -07:00
'prefix' => '',
);
2020-07-14 00:31:23 -07:00
}