We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 949cdff commit aff6e46Copy full SHA for aff6e46
lib/Service/ConfigService.php
@@ -45,6 +45,7 @@ class ConfigService {
45
46
47
const MAINTENANCE = 'maintenance';
48
+ const DB_TYPE = 'dbtype';
49
const SELF_SIGNED_CERT = 'self_signed_cert';
50
const LAST_FULL_RP = 'last_full_rp';
51
lib/Service/PointService.php
@@ -359,6 +359,10 @@ private function addIncrementalData(RestoringPoint $point): void {
359
* @throws Throwable
360
*/
361
private function backupSql(RestoringPoint $point) {
362
+ if ($this->configService->getSystemValue(ConfigService::DB_TYPE) !== 'mysql') {
363
+ return;
364
+ }
365
+
366
$path = '';
367
try {
368
$path = $this->generateSqlDump();
0 commit comments