feat: implement backend database management API and frontend service integration

This commit is contained in:
Ümit Tunç
2026-04-24 12:59:55 +03:00
parent 853a730210
commit 5c0744d5d1
5 changed files with 101 additions and 3 deletions
+8
View File
@@ -138,4 +138,12 @@ class DatabaseService
{
return $this->getDriver()->truncateTable($table);
}
/**
* Get metadata for all tables in a database.
*/
public function getTablesMetadata(string $database): array
{
return $this->getDriver()->getTablesMetadata($database);
}
}