From f05e543296a3ed0df1fade0d7b50bc8e74aa68b6 Mon Sep 17 00:00:00 2001 From: Faraz Samapoor Date: Tue, 11 Apr 2023 16:48:09 +0330 Subject: [PATCH] Fixes migrations:execute description in migrations.rst. "Version" is the "prefix" of the class name, not the "postfix". Signed-off-by: Faraz Samapoor --- developer_manual/basics/storage/migrations.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer_manual/basics/storage/migrations.rst b/developer_manual/basics/storage/migrations.rst index f9432eca4..1bb021cb9 100644 --- a/developer_manual/basics/storage/migrations.rst +++ b/developer_manual/basics/storage/migrations.rst @@ -155,8 +155,8 @@ with migrations, which are only available if you are running your Nextcloud **in debug mode**: * `migrations:execute`: Executes a single migration version manually. - The version argument is the class name of the migration, while the - postfix "Version" is skipped. For example if your migration was named + The version argument is the class name of the migration, without the + "Version" prefix. For example if your migration was named `Version2404Date20220903071748` the version would be `2404Date20220903071748`. * `migrations:generate`: This is needed to create a new migration file. This takes 2 arguments,