Skip to content

Commit

Permalink
Merge pull request #38 from vkichline/patch-2
Browse files Browse the repository at this point in the history
Fix typo in command syntax.

Thanks @vkichline
  • Loading branch information
natemcmaster committed Sep 14, 2015
2 parents e7f7bb9 + 9f7de23 commit b05e6bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/getting-started/aspnet5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Now that you have a model, you can use migrations to create a database for you.
- Run ``dnx ef database update`` to apply the new migration to the database. Because your database doesn't exist yet, it will be created for you before the migration is applied.

.. tip::
If you make future changes to your model, you can use the ``dnx ef migrations add`` command to scaffold a new migration to apply the corresponding changes to the database. Once you have checked the scaffolded code (and made any required changes), you can use the ``dnx database update`` command to apply the changes to the database.
If you make future changes to your model, you can use the ``dnx ef migrations add`` command to scaffold a new migration to apply the corresponding changes to the database. Once you have checked the scaffolded code (and made any required changes), you can use the ``dnx ef database update`` command to apply the changes to the database.

Create a controller
-------------------
Expand Down

0 comments on commit b05e6bf

Please sign in to comment.