Files
framework/config/database.php
T
2019-03-11 19:44:28 -03:00

15 lines
278 B
PHP
Executable File

<?php
use BBOrm\Connections as Connections;
global $DB;
$DB = Connection::open([
'driver' => 'pgsql',
'host' => 'localhost',
'prefix' => '_urfat',
'name' => 'urfat',
'user' => 'urfat',
'pass' => 'urfat']);
Connections::add_connection($DB, "default");