From c0c9b64ce6124b29a6476070fbb7911865228a40 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Sun, 18 May 2025 03:27:47 +1200 Subject: [PATCH] Fix length --- src/Appwrite/Platform/Tasks/Migrate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Tasks/Migrate.php b/src/Appwrite/Platform/Tasks/Migrate.php index 9f3494c506..5407c772ab 100644 --- a/src/Appwrite/Platform/Tasks/Migrate.php +++ b/src/Appwrite/Platform/Tasks/Migrate.php @@ -27,7 +27,7 @@ class Migrate extends Action { $this ->desc('Migrate Appwrite to new version') - ->param('version', APP_VERSION_STABLE, new Text(8), 'Version to migrate to.', true) + ->param('version', APP_VERSION_STABLE, new Text(16), 'Version to migrate to.', true) ->inject('dbForPlatform') ->inject('getProjectDB') ->inject('register')