From ae3d90570d79fb975ccdddf4329ebb698a8f5846 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Wed, 8 May 2019 11:42:41 -1000 Subject: [PATCH] Update model.md (#12341) --- aspnetcore/tutorials/razor-pages/model.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aspnetcore/tutorials/razor-pages/model.md b/aspnetcore/tutorials/razor-pages/model.md index 641090b154..565d5fc640 100644 --- a/aspnetcore/tutorials/razor-pages/model.md +++ b/aspnetcore/tutorials/razor-pages/model.md @@ -204,8 +204,12 @@ The name of the connection string is passed in to the context by calling a metho # [Visual Studio Code](#tab/visual-studio-code) +Examine the `Up` method. + # [Visual Studio for Mac](#tab/visual-studio-mac) +Examine the `Up` method. + --- The `Add-Migration` command generates code to create the initial database schema. The schema is based on the model specified in the `RazorPagesMovieContext` (In the *Data/RazorPagesMovieContext.cs* file). The `Initial` argument is used to name the migrations. Any name can be used, but by convention a name that describes the migration is used. For more information, see .