From fea1deaa6671e86bf6b8b4cf00d5bf17ec049a5e Mon Sep 17 00:00:00 2001 From: Sam DeVore Date: Wed, 23 May 2018 11:42:59 -0700 Subject: [PATCH] `migrations` in the `bin/cake` command is plural --- Docs/Documentation/Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/Documentation/Examples.md b/Docs/Documentation/Examples.md index 9ba24d5..ec47865 100644 --- a/Docs/Documentation/Examples.md +++ b/Docs/Documentation/Examples.md @@ -4,7 +4,7 @@ Firstly you need to create a migration to populate the database for you create the migration you need to run this command: -``` bin/cake migration create MyCustomMigration ``` and in the change method you need to create the entries, for example: +``` bin/cake migrations create MyCustomMigration ``` and in the change method you need to create the entries, for example: ```php public function change()