From 4911282c3935c59d945e65f39b9e072ba4d46583 Mon Sep 17 00:00:00 2001 From: Andre Kraemer Date: Mon, 23 Sep 2024 02:04:11 +0200 Subject: [PATCH] =?UTF-8?q?Added=20missing=20`add`=20in=20the=20migration?= =?UTF-8?q?=20command=20of=20Blazor=20Movie=20Tutorial=E2=80=A6=20(#33678)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aspnetcore/blazor/tutorials/movie-database-app/part-7.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/blazor/tutorials/movie-database-app/part-7.md b/aspnetcore/blazor/tutorials/movie-database-app/part-7.md index 793a655ef7..02d313dd03 100644 --- a/aspnetcore/blazor/tutorials/movie-database-app/part-7.md +++ b/aspnetcore/blazor/tutorials/movie-database-app/part-7.md @@ -199,7 +199,7 @@ Modify the one movie that isn't rated *R*: In the **Terminal** (**Terminal** menu > **New Terminal**), execute the following command to add a migration. The migration name (`AddRatingField`) is an arbitrary description for the migration: ```dotnetcli -dotnet ef migrations AddRatingField +dotnet ef migrations add AddRatingField ``` The `dotnet-ef migrations` command: @@ -247,7 +247,7 @@ Modify the one movie that isn't rated *R*: In a command shell opened to the project's root folder, execute the following command to add a migration. The migration name (`AddRatingField`) is an arbitrary description for the migration: ```dotnetcli -dotnet ef migrations AddRatingField +dotnet ef migrations add AddRatingField ``` The `dotnet-ef migrations` command: