Skip to content

Commit 38ae71c

Browse files
Use consistent migration name in example (#4948)
1 parent 531a2de commit 38ae71c

File tree

1 file changed

+2
-2
lines changed
  • entity-framework/core/managing-schemas/migrations

1 file changed

+2
-2
lines changed

entity-framework/core/managing-schemas/migrations/managing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ The migration name can be used like a commit message in a version control system
3434

3535
Three files are added to your project under the **Migrations** directory:
3636

37-
* **XXXXXXXXXXXXXX_AddCreatedTimestamp.cs**--The main migrations file. Contains the operations necessary to apply the migration (in `Up`) and to revert it (in `Down`).
38-
* **XXXXXXXXXXXXXX_AddCreatedTimestamp.Designer.cs**--The migrations metadata file. Contains information used by EF.
37+
* **XXXXXXXXXXXXXX_AddBlogCreatedTimestamp.cs**--The main migrations file. Contains the operations necessary to apply the migration (in `Up`) and to revert it (in `Down`).
38+
* **XXXXXXXXXXXXXX_AddBlogCreatedTimestamp.Designer.cs**--The migrations metadata file. Contains information used by EF.
3939
* **MyContextModelSnapshot.cs**--A snapshot of your current model. Used to determine what changed when adding the next migration.
4040

4141
The timestamp in the filename helps keep them ordered chronologically so you can see the progression of changes.

0 commit comments

Comments
 (0)