migrations boolean() -> smallInteger()

This commit is contained in:
xiaomlove
2026-04-14 13:12:56 +07:00
parent 4d4af87dc9
commit 4d54e08918
45 changed files with 136 additions and 103 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ namespace Nexus\Database;
interface DBInterface
{
public function connect($host, $username, $password, $database, $port);
public function connect($host, $username, $password, $database, $port, $driver = 'mysql');
public function query(string $sql);
@@ -29,4 +29,4 @@ interface DBInterface
public function freeResult($result);
}
}