You may want to enable EF automatic migration, so when the application gets the first request, it will show a button on the page, you can click and create a database or deploy database change.
You only need to add Database Migrate() to the constructor of your DbContext file. (If you selected Individual user login option when you create the project, the context file will be,
"\Models\Data\ApplicationDbContext.cs".)
public ApplicationDbContext(DbContextOptions options)
: base(options)
{
Database.Migrate();
}