mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-05-15 20:47:33 +08:00
migrations boolean() -> smallInteger()
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
use Nexus\Database\NexusDB;
|
||||
|
||||
function mysql_connect($host, $username, $password, $database, $port)
|
||||
function mysql_connect($host, $username, $password, $database, $port, $driver = 'mysql')
|
||||
{
|
||||
return NexusDB::getInstance()->connect($host, $username, $password, $database, $port);
|
||||
return NexusDB::getInstance()->connect($host, $username, $password, $database, $port, $driver);
|
||||
}
|
||||
|
||||
function mysql_errno()
|
||||
|
||||
Reference in New Issue
Block a user