feat: implement database schema discovery and management services with frontend integration

This commit is contained in:
Ümit Tunç
2026-04-24 13:46:38 +03:00
parent 53b40e95e5
commit a447d5a08e
8 changed files with 372 additions and 11 deletions
+8
View File
@@ -156,4 +156,12 @@ class DatabaseService
{
return $this->getDriver()->getTablesMetadata($database);
}
/**
* Perform batch update on a table.
*/
public function batchUpdate(string $table, array $changes): bool
{
return $this->getDriver()->batchUpdate($table, $changes);
}
}