From a63246c2cf92a9dff8ee2d300bba904a371e11e2 Mon Sep 17 00:00:00 2001 From: Bradley Schofield Date: Mon, 22 Jan 2024 11:21:25 +0000 Subject: [PATCH] Update V20.php --- src/Appwrite/Migration/Version/V20.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Appwrite/Migration/Version/V20.php b/src/Appwrite/Migration/Version/V20.php index 2fb19ad31b..d8a333ccf4 100644 --- a/src/Appwrite/Migration/Version/V20.php +++ b/src/Appwrite/Migration/Version/V20.php @@ -73,6 +73,7 @@ class V20 extends Migration } catch (\Throwable $th) { Console::warning("'oAuthProviders' from {$id}: {$th->getMessage()}"); } + break; case 'schedules': try { $this->createAttributeFromCollection($this->projectDB, $id, 'resourceCollection'); @@ -80,6 +81,7 @@ class V20 extends Migration } catch (\Throwable $th) { Console::warning("'schedules' from {$id}: {$th->getMessage()}"); } + break; case 'webhooks': try { $this->createAttributeFromCollection($this->projectDB, $id, 'enabled'); @@ -89,6 +91,7 @@ class V20 extends Migration } catch (\Throwable $th) { Console::warning("'webhooks' from {$id}: {$th->getMessage()}"); } + break; default: break; }