feat: implement backend database management API and frontend service integration
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user