More changes
This commit is contained in:
Executable
+40
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
use ORM\Connections as Connections;
|
||||
|
||||
/*
|
||||
* PostgreSQL
|
||||
*
|
||||
* Connections::addConnection(Connection::open([
|
||||
'driver' => 'pgsql',
|
||||
'host' => 'localhost',
|
||||
'prefix' => '_urfat',
|
||||
'name' => 'urfat',
|
||||
'user' => 'urfat',
|
||||
'pass' => 'urfat'])
|
||||
, "default");
|
||||
*/
|
||||
|
||||
/*
|
||||
* Mysql
|
||||
*
|
||||
* Connections::addConnection(Connection::open([
|
||||
'driver' => 'mysql',
|
||||
'host' => 'localhost',
|
||||
'prefix' => '_urfat',
|
||||
'name' => 'urfat',
|
||||
'user' => 'urfat',
|
||||
'pass' => 'urfat'])
|
||||
, "default");
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* Sqlite
|
||||
*
|
||||
Connections::addConnection(Connection::open([
|
||||
'driver' => 'sqlite',
|
||||
'prefix' => '_urfat',
|
||||
'name' => 'database.db'])
|
||||
, "default");
|
||||
*/
|
||||
Reference in New Issue
Block a user