From afbe1122508b89219548624c16d5edb9774733a9 Mon Sep 17 00:00:00 2001 From: Oswald Maier <253339691+ozMaier@users.noreply.github.com> Date: Wed, 8 Apr 2026 15:22:37 +0000 Subject: [PATCH] "bin/cake seeds run" does not exist The command does not exist (anymore?), instead use "bin/cake migrations seed". I found this out through "bin/cake migrations --help" --- docs/en/tutorials-and-examples/cms/database.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/tutorials-and-examples/cms/database.md b/docs/en/tutorials-and-examples/cms/database.md index ca163bb88a..4b4ec6c179 100644 --- a/docs/en/tutorials-and-examples/cms/database.md +++ b/docs/en/tutorials-and-examples/cms/database.md @@ -198,7 +198,7 @@ The seed data above stores passwords in **plain text** for initial setup purpose Run the seeders: ```bash -bin/cake seeds run +bin/cake migrations seed ``` ### Option B: Using Raw SQL