-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(migrations):some type of table id record convert to guid
- Loading branch information
1 parent
db73471
commit 2357897
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...ations/20240908111757_initial.Designer.cs → ...ations/20240908115457_initial.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -273,7 +273,7 @@ protected override void Up(MigrationBuilder migrationBuilder) | |
migrationBuilder.InsertData( | ||
table: "Users", | ||
columns: new[] { "Id", "Email", "FirstName", "ImageURL", "LastName", "Password", "PhoneNumber", "RoleId", "Username" }, | ||
values: new object[] { new Guid("3420886b-a4d4-4701-8926-bb9bbe31db94"), "[email protected]", "admin", null, "admin", "jGl25bVBBBW96Qi9Te4V37Fnqchz/Eu4qB9vKrRIqRg=", "09131111111", 1, "admin" }); | ||
values: new object[] { new Guid("d8a83af5-1202-4307-b852-bd941a331dd0"), "[email protected]", "admin", null, "admin", "jGl25bVBBBW96Qi9Te4V37Fnqchz/Eu4qB9vKrRIqRg=", "09131111111", 1, "admin" }); | ||
|
||
migrationBuilder.CreateIndex( | ||
name: "IX_EntityEdges_EntityIDSource", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -323,7 +323,7 @@ protected override void BuildModel(ModelBuilder modelBuilder) | |
b.HasData( | ||
new | ||
{ | ||
Id = new Guid("3420886b-a4d4-4701-8926-bb9bbe31db94"), | ||
Id = new Guid("d8a83af5-1202-4307-b852-bd941a331dd0"), | ||
Email = "[email protected]", | ||
FirstName = "admin", | ||
LastName = "admin", | ||
|