using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace GrossesMitainesAPI.Migrations { public partial class nonUserInvoice : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.InsertData( table: "Addresses", columns: new[] { "Id", "Appartment", "City", "CivicNumber", "Country", "InventoryUserId", "PostalCode", "Province", "Street" }, values: new object[] { 2, null, "Saint-Jérôme", 420, "Canada", null, "H0H0H0", "QC", "Rue MikeWard" }); migrationBuilder.UpdateData( table: "AspNetRoles", keyColumn: "Id", keyValue: "1b7b9c55-c746-493a-a24f-3d5ca937298e", column: "ConcurrencyStamp", value: "8b05058e-1c97-4021-a485-6987e774c877"); migrationBuilder.UpdateData( table: "AspNetRoles", keyColumn: "Id", keyValue: "c9e08b20-d8a5-473f-9f52-572eb23c12af", column: "ConcurrencyStamp", value: "e5b77c04-830f-4c19-ad44-6c9e5a508efb"); migrationBuilder.UpdateData( table: "AspNetUsers", keyColumn: "Id", keyValue: "ecf7503a-591c-454e-a824-048e10bd0474", columns: new[] { "ConcurrencyStamp", "PasswordHash", "SecurityStamp" }, values: new object[] { "af3a641d-8fe8-45c3-8e36-fdfbef10659a", "AQAAAAEAACcQAAAAEL/k0+c61dX1YPgqHrr6wmVSZNJzoqveJzr8IxjVSSL3W+GSsqOXft+hVLXozCnqVg==", "8ac35276-f8dc-4de4-826f-ea2996e09f2c" }); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 1, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 35, 25, 783, DateTimeKind.Local).AddTicks(6619)); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 2, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 35, 25, 783, DateTimeKind.Local).AddTicks(6655)); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 3, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 35, 25, 783, DateTimeKind.Local).AddTicks(6658)); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 4, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 35, 25, 783, DateTimeKind.Local).AddTicks(6659)); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 5, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 35, 25, 783, DateTimeKind.Local).AddTicks(6661)); migrationBuilder.InsertData( table: "Invoices", columns: new[] { "Id", "EmailAddress", "FirstName", "LastName", "LinkedAccountId", "PhoneNumber", "PurchaseDate", "ShippingAddressId", "Status" }, values: new object[] { 6, "test@admin.com", "Jérémy", "Le Petit", null, "111-111-1111", new DateTime(2022, 11, 7, 22, 35, 25, 783, DateTimeKind.Local).AddTicks(6663), 2, 0 }); migrationBuilder.InsertData( table: "ProductInvoice", columns: new[] { "Id", "InvoiceModelId", "ProductId", "Quantity" }, values: new object[] { 16, 6, 20, 4L }); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DeleteData( table: "ProductInvoice", keyColumn: "Id", keyValue: 16); migrationBuilder.DeleteData( table: "Invoices", keyColumn: "Id", keyValue: 6); migrationBuilder.DeleteData( table: "Addresses", keyColumn: "Id", keyValue: 2); migrationBuilder.UpdateData( table: "AspNetRoles", keyColumn: "Id", keyValue: "1b7b9c55-c746-493a-a24f-3d5ca937298e", column: "ConcurrencyStamp", value: "664e61a9-f77d-46ee-805c-98084e8b2fcb"); migrationBuilder.UpdateData( table: "AspNetRoles", keyColumn: "Id", keyValue: "c9e08b20-d8a5-473f-9f52-572eb23c12af", column: "ConcurrencyStamp", value: "3b41186e-cc4b-49c0-b172-4c2b9be614d2"); migrationBuilder.UpdateData( table: "AspNetUsers", keyColumn: "Id", keyValue: "ecf7503a-591c-454e-a824-048e10bd0474", columns: new[] { "ConcurrencyStamp", "PasswordHash", "SecurityStamp" }, values: new object[] { "55f4780c-49dd-44ea-b566-30d058c0005b", "AQAAAAEAACcQAAAAEK/n6j8ui+ZivXKUi2Lv6Jr7wXBJQdOdXawkvVDBlr4Rnxc7DxsuWwaaX5vN3YSjmQ==", "e3f2e569-fb52-49af-b9bc-10bf8df2b778" }); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 1, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1206)); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 2, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1244)); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 3, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1247)); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 4, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1249)); migrationBuilder.UpdateData( table: "Invoices", keyColumn: "Id", keyValue: 5, column: "PurchaseDate", value: new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1251)); } } }