feat: implement database management service layer and frontend SQL import/export utility

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