From 35ed3683ccedd8cde89ff54b8ec69f31c757bd2e Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Tue, 4 Jun 2019 08:22:31 -1000 Subject: [PATCH] Update adding-model.md --- aspnetcore/tutorials/first-mvc-app/adding-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-mvc-app/adding-model.md b/aspnetcore/tutorials/first-mvc-app/adding-model.md index 1fdb2f7d86..169154a2ca 100644 --- a/aspnetcore/tutorials/first-mvc-app/adding-model.md +++ b/aspnetcore/tutorials/first-mvc-app/adding-model.md @@ -151,7 +151,7 @@ In this section, the following tasks are completed: The `Add-Migration` command generates code to create the initial database schema. - The database schema is based on the model specified in the `MvcMovieContext` class (in the *Data/MvcMovieContext.cs* file). The `Initial` argument is the migration name. Any name can be used, but by convention, a name that describes the migration is used. For more information, see . + The database schema is based on the model specified in the `MvcMovieContext` class. The `Initial` argument is the migration name. Any name can be used, but by convention, a name that describes the migration is used. For more information, see . The `Update-Database` command runs the `Up` method in the *Migrations/{time-stamp}_InitialCreate.cs* file, which creates the database.