diff --git a/app/Subscribers/CommandSubscriber.php b/app/Subscribers/CommandSubscriber.php index accddefe..64ab0a14 100644 --- a/app/Subscribers/CommandSubscriber.php +++ b/app/Subscribers/CommandSubscriber.php @@ -83,6 +83,13 @@ class CommandSubscriber $command->line('Settings cache cleared!'); + // SQLite does not backup. + if ($this->config->get('database.default') === 'sqlite') { + $command->line('Backup skipped: SQLite is not supported.'); + + return; + } + $command->line('Backing up database...'); try {