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: