From b1da87f970e22af51bf0e6d069b9d2e69c266272 Mon Sep 17 00:00:00 2001 From: shimon Date: Sun, 1 Oct 2023 21:06:25 +0300 Subject: [PATCH] migrations worker --- src/Appwrite/Platform/Services/Workers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Services/Workers.php b/src/Appwrite/Platform/Services/Workers.php index 6ec841bf23..67ecf3dd55 100644 --- a/src/Appwrite/Platform/Services/Workers.php +++ b/src/Appwrite/Platform/Services/Workers.php @@ -33,7 +33,7 @@ class Workers extends Service ->addAction(Deletes::getName(), new Deletes()) ->addAction(UsageHook::getName(), new UsageHook()) ->addAction(Usage::getName(), new Usage()) - ->addAction(Usage::getName(), new Migrations()) + ->addAction(Migrations::getName(), new Migrations()) ; }