diff options
| author | ivar <i@oiee.no> | 2023-11-11 22:09:47 +0100 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2023-11-11 22:09:47 +0100 |
| commit | 97e93e4669958ff7ac18886e0394cd63260d3c70 (patch) | |
| tree | a444b1ed9fd1d00411b2417d54f750b50bdc2167 /code/api/src/Migrations/20210522165932_RenameNoteToDescription.cs | |
| parent | 0fa8060856fde1ac887d1fefe3940ac494d236cb (diff) | |
| download | greatoffice-97e93e4669958ff7ac18886e0394cd63260d3c70.tar.xz greatoffice-97e93e4669958ff7ac18886e0394cd63260d3c70.zip | |
Fix usings
Diffstat (limited to 'code/api/src/Migrations/20210522165932_RenameNoteToDescription.cs')
| -rw-r--r-- | code/api/src/Migrations/20210522165932_RenameNoteToDescription.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/code/api/src/Migrations/20210522165932_RenameNoteToDescription.cs b/code/api/src/Migrations/20210522165932_RenameNoteToDescription.cs index e5bae54..db5132a 100644 --- a/code/api/src/Migrations/20210522165932_RenameNoteToDescription.cs +++ b/code/api/src/Migrations/20210522165932_RenameNoteToDescription.cs @@ -1,5 +1,4 @@ -using System; -using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Migrations; namespace IOL.GreatOffice.Api.Migrations { @@ -27,8 +26,8 @@ namespace IOL.GreatOffice.Api.Migrations migrationBuilder.InsertData( table: "users", - columns: new[] { "id", "created", "password", "username" }, - values: new object[] { new Guid("784938f0-cc0e-46ec-afa6-fc60b47b28db"), new DateTime(2021, 5, 17, 20, 21, 14, 827, DateTimeKind.Utc).AddTicks(4868), "AAAAAAEAACcQAAAAEJdtrX3pEeIbcgY+BDAr56gvfbc420ag1TllA0cK6Q6Gw3+gGDIQtYIZnisW3dmqaQ==", "admin@ivarlovlie.no" }); + columns: ["id", "created", "password", "username"], + values: [new Guid("784938f0-cc0e-46ec-afa6-fc60b47b28db"), new DateTime(2021, 5, 17, 20, 21, 14, 827, DateTimeKind.Utc).AddTicks(4868), "AAAAAAEAACcQAAAAEJdtrX3pEeIbcgY+BDAr56gvfbc420ag1TllA0cK6Q6Gw3+gGDIQtYIZnisW3dmqaQ==", "admin@ivarlovlie.no"]); } } } |
