Added missing `add` in the migration command of Blazor Movie Tutorial… (#33678)

pull/33679/head
Andre Kraemer 2024-09-23 02:04:11 +02:00 committed by GitHub
parent 7d18c6480d
commit 4911282c39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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: