Added missing `add` in the migration command of Blazor Movie Tutorial… (#33678)
parent
7d18c6480d
commit
4911282c39
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue