feat: implement database management service layer with MySQL driver and API controllers

This commit is contained in:
Ümit Tunç
2026-04-28 20:16:28 +03:00
parent b5282df56f
commit 2e529bb61c
7 changed files with 153 additions and 15 deletions
@@ -78,4 +78,9 @@ interface DatabaseDriverInterface
* Perform batch update on a table.
*/
public function batchUpdate(string $table, array $changes): bool;
/**
* Create a new database.
*/
public function createDatabase(string $name, string $charset = 'utf8mb4', string $collation = 'utf8mb4_unicode_ci'): bool;
}