From 70bfd4dd8a3effbd854dba963e528c50d9cdf026 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 28 Jun 2024 11:00:02 +0200 Subject: [PATCH] fix: show keydbs/dragonflies/clickhouses --- app/Models/Environment.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Models/Environment.php b/app/Models/Environment.php index b2bb51092..fc19c134f 100644 --- a/app/Models/Environment.php +++ b/app/Models/Environment.php @@ -27,6 +27,9 @@ class Environment extends Model $this->redis()->count() == 0 && $this->postgresqls()->count() == 0 && $this->mysqls()->count() == 0 && + $this->keydbs()->count() == 0 && + $this->dragonflies()->count() == 0 && + $this->clickhouses()->count() == 0 && $this->mariadbs()->count() == 0 && $this->mongodbs()->count() == 0 && $this->services()->count() == 0;