using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable #pragma warning disable CA1814 // Prefer jagged arrays over multidimensional namespace GerbilManagerWebAPI.Migrations { /// public partial class ReseedColorVarietiesGen3g : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000055"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmch DD EE GG PP spsp rere", "CP-Agouti-Hell" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000056"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm DD EE gg PP spsp rere", "CP-Silberagouti" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000057"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmch DD EE gg PP spsp rere", "CP-Silberagouti-Hell" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000058"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm DD ee GG PP spsp rere", "CP-Algierfuchs" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000059"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmch DD ee GG PP spsp rere", "CP-Algierfuchs-Hell" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000060"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm DD ee gg PP spsp rere", "CP-Polarfuchs" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000061"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmch DD ee gg PP spsp rere", "CP-Polarfuchs-Hell" }); migrationBuilder.InsertData( table: "ColorVarieties", columns: new[] { "Id", "CanonicalGenotype", "Name", "SortOrder" }, values: new object[,] { { new Guid("00000000-0000-0000-0000-000000000062"), "AA cchmcchm dd ee GG PP spsp rere", "CP-Fuchs", 61 }, { new Guid("00000000-0000-0000-0000-000000000063"), "AA cchmch dd ee GG PP spsp rere", "CP-Fuchs-Hell", 62 }, { new Guid("00000000-0000-0000-0000-000000000064"), "AA cchmcchm dd ee gg PP spsp rere", "CP-Blaufuchs", 63 }, { new Guid("00000000-0000-0000-0000-000000000065"), "AA cchmcchm DD efef GG PP spsp rere", "CP-Orangeschimmel", 64 }, { new Guid("00000000-0000-0000-0000-000000000066"), "AA cchmch DD efef GG PP spsp rere", "CP-Orangeschimmel-Hell", 65 } }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DeleteData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000062")); migrationBuilder.DeleteData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000063")); migrationBuilder.DeleteData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000064")); migrationBuilder.DeleteData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000065")); migrationBuilder.DeleteData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000066")); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000055"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm DD EE gg PP spsp rere", "CP-Silberagouti" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000056"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm DD ee GG PP spsp rere", "CP-Algierfuchs" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000057"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm DD ee gg PP spsp rere", "CP-Polarfuchs" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000058"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm dd ee GG PP spsp rere", "CP-Fuchs" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000059"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmch dd ee GG PP spsp rere", "CP-Fuchs-Hell" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000060"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm dd ee gg PP spsp rere", "CP-Blaufuchs" }); migrationBuilder.UpdateData( table: "ColorVarieties", keyColumn: "Id", keyValue: new Guid("00000000-0000-0000-0000-000000000061"), columns: new[] { "CanonicalGenotype", "Name" }, values: new object[] { "AA cchmcchm DD efef GG PP spsp rere", "CP-Orangeschimmel" }); } } }