feat: implement MySQL driver and schema discovery service for dynamic database management

This commit is contained in:
Ümit Tunç
2026-04-24 22:45:20 +03:00
parent 5af75c95dd
commit b5282df56f
5 changed files with 68 additions and 6 deletions
+2 -2
View File
@@ -102,9 +102,9 @@ class DatabaseService
/**
* Export the database.
*/
public function export(array $config): string
public function export(array $config, array $filters = []): string
{
return $this->getDriver()->export($config);
return $this->getDriver()->export($config, $filters);
}
/**