diff --git a/app/Actions/MySQL/GetDatabasesWithStatsAction.php b/app/Actions/MySQL/GetDatabasesWithStatsAction.php index b7644eb..15ebbd6 100644 --- a/app/Actions/MySQL/GetDatabasesWithStatsAction.php +++ b/app/Actions/MySQL/GetDatabasesWithStatsAction.php @@ -12,7 +12,7 @@ class GetDatabasesWithStatsAction public function execute(): array { - $databases = Database::mine()->get(); + $databases = Database::where('user_id', $this->user->id)->get(); $items = []; foreach ($databases as $database) {