- GerbilStatus += ForSale ("Abzugeben", FEAT-12 sale listing); enum-as-string, no DB change.
- Contact: contactInfo -> structured email/phone/address (FEAT-13 sale contracts); name/notes kept.
- ColorVariety seed 18 -> 73 from Kevin's GEN-2 colorVarietySeed.generated.json (18 frozen first).
- Regenerated InitialCreate migration (Contacts email/phone/address cols, 73 seed rows).
384 lines
23 KiB
C#
384 lines
23 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional
|
|
|
|
namespace GerbilManagerWebAPI.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class InitialCreate : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "ColorVarieties",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
CanonicalGenotype = table.Column<string>(type: "text", nullable: true),
|
|
SortOrder = table.Column<int>(type: "integer", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_ColorVarieties", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Contacts",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Email = table.Column<string>(type: "text", nullable: true),
|
|
Phone = table.Column<string>(type: "text", nullable: true),
|
|
Address = table.Column<string>(type: "text", nullable: true),
|
|
Notes = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Contacts", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Enclosures",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Notes = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Enclosures", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "GerbilPhotos",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
GerbilId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
FileName = table.Column<string>(type: "text", nullable: false),
|
|
Caption = table.Column<string>(type: "text", nullable: true),
|
|
SortOrder = table.Column<int>(type: "integer", nullable: false),
|
|
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_GerbilPhotos", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Gerbils",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Gender = table.Column<string>(type: "text", nullable: false),
|
|
Status = table.Column<string>(type: "text", nullable: false),
|
|
LitterId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
OriginContactId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
ReceiverContactId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
EnclosureId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
ColorVarietyId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
DateOfBirth = table.Column<DateOnly>(type: "date", nullable: true),
|
|
DateOfDeath = table.Column<DateOnly>(type: "date", nullable: true),
|
|
CauseOfDeath = table.Column<string>(type: "text", nullable: true),
|
|
GoHomeDate = table.Column<DateOnly>(type: "date", nullable: true),
|
|
Genotype = table.Column<string>(type: "text", nullable: true),
|
|
Notes = table.Column<string>(type: "text", nullable: true),
|
|
ImportSource = table.Column<string>(type: "text", nullable: true),
|
|
ExternalRef = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Gerbils", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Gerbils_ColorVarieties_ColorVarietyId",
|
|
column: x => x.ColorVarietyId,
|
|
principalTable: "ColorVarieties",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.SetNull);
|
|
table.ForeignKey(
|
|
name: "FK_Gerbils_Contacts_OriginContactId",
|
|
column: x => x.OriginContactId,
|
|
principalTable: "Contacts",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
name: "FK_Gerbils_Contacts_ReceiverContactId",
|
|
column: x => x.ReceiverContactId,
|
|
principalTable: "Contacts",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
name: "FK_Gerbils_Enclosures_EnclosureId",
|
|
column: x => x.EnclosureId,
|
|
principalTable: "Enclosures",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.SetNull);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "HealthRecords",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
GerbilId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Date = table.Column<DateOnly>(type: "date", nullable: false),
|
|
Type = table.Column<string>(type: "text", nullable: false),
|
|
Description = table.Column<string>(type: "text", nullable: false),
|
|
Veterinarian = table.Column<string>(type: "text", nullable: true),
|
|
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_HealthRecords", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_HealthRecords_Gerbils_GerbilId",
|
|
column: x => x.GerbilId,
|
|
principalTable: "Gerbils",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Litters",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Date = table.Column<DateOnly>(type: "date", nullable: false),
|
|
TotalBorn = table.Column<int>(type: "integer", nullable: true),
|
|
FatherId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
MotherId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
ExpectedGoHomeDate = table.Column<DateOnly>(type: "date", nullable: true),
|
|
Notes = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Litters", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Litters_Gerbils_FatherId",
|
|
column: x => x.FatherId,
|
|
principalTable: "Gerbils",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
name: "FK_Litters_Gerbils_MotherId",
|
|
column: x => x.MotherId,
|
|
principalTable: "Gerbils",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "WeightRecords",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
GerbilId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Date = table.Column<DateOnly>(type: "date", nullable: false),
|
|
WeightGrams = table.Column<int>(type: "integer", nullable: false),
|
|
Notes = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_WeightRecords", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_WeightRecords_Gerbils_GerbilId",
|
|
column: x => x.GerbilId,
|
|
principalTable: "Gerbils",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.InsertData(
|
|
table: "ColorVarieties",
|
|
columns: new[] { "Id", "CanonicalGenotype", "Name", "SortOrder" },
|
|
values: new object[,]
|
|
{
|
|
{ new Guid("00000000-0000-0000-0000-000000000001"), "AA chch DD EE GG pp spsp rere", "Pink Eyed White (PEW)", 0 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000002"), "aa chch DD EE GG PP spsp rere", "Hermelin", 1 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000003"), "AA chch DD EE GG PP spsp rere", "Himalaya", 2 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000004"), "aa cchmcchm DD EE gg PP spsp rere", "Zobel", 3 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000005"), "AA CC DD efef GG PP spsp rere", "Schwarzschimmel", 4 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000006"), "AA CC DD efef GG pp spsp rere", "Rotaugenschimmel", 5 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000007"), "AA CC DD EE GG PP spsp rere", "Agouti", 6 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000008"), "aa CC DD EE GG PP spsp rere", "Schwarz", 7 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000009"), "AA CC DD EE gg PP spsp rere", "Silberagouti", 8 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000010"), "aa CC DD EE gg PP spsp rere", "Anthrazit", 9 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000011"), "AA CC DD ee GG PP spsp rere", "Algierfuchs", 10 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000012"), "aa CC dd EE GG PP spsp rere", "Blau", 11 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000013"), "AA CC DD EE GG pp spsp rere", "Gold", 12 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000014"), "aa CC DD EE GG pp spsp rere", "Platin", 13 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000015"), "AA CC DD ee GG pp spsp rere", "Goldfuchs", 14 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000016"), "aa CC DD ee GG pp spsp rere", "Rotfuchs", 15 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000017"), "AA CC dd EE GG pp spsp rere", "dd Gold", 16 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000018"), "aa CC dd EE GG pp spsp rere", "dd Platin", 17 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000019"), "aa CC DD EE gg pp spsp rere", "Altweiss (REW)", 18 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000020"), "AA CC DD ee gg pp spsp rere", "Apricot (Blassfuchs)", 19 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000021"), "aa CC DD ee gg PP spsp rere", "Blaufuchs", 20 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000022"), "aa CC DD ee gg pp spsp rere", "C-Separator", 21 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000023"), "AA CC DD EE gg pp spsp rere", "Elfenbein", 22 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000024"), "aa CC DD ee GG PP spsp rere", "Kohlfuchs", 23 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000025"), "aa cchmcchm DD EE GG PP spsp rere", "Marder", 24 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000026"), "aa cchmcchm DD EE GG PP spsp rere", "Siam (Marder-Hell)", 25 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000027"), "AA CC DD ee gg PP spsp rere", "Polarfuchs", 26 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000028"), "aa CC DD EE GG pp spsp rere", "Saphir", 27 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000029"), "AA CC DD efef GG PP spsp rere", "Schimmel (Orangeschimmel)", 28 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000030"), "AA CC DD EE GG pp spsp rere", "Topas", 29 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000031"), "aa CC DD EE GG pp spsp rere", "Platin-Hell", 30 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000032"), "AA CC dd EE GG PP spsp rere", "Agouti dd", 31 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000033"), "AA CC dd EE gg PP spsp rere", "Silberagouti dd", 32 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000034"), "aa CC dd ee GG PP spsp rere", "Kohlfuchs dd", 33 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000035"), "aa CC dd EE gg PP spsp rere", "Anthrazit dd", 34 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000036"), "AA cchmcchm DD EE GG PP spsp rere", "Agouti CP-Hell", 35 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000037"), "aa cchmcchm DD ee gg PP spsp rere", "Blaufuchs CP", 36 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000038"), "AA CC DD efef gg PP spsp rere", "Polarfuchsschimmel", 37 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000039"), "AA CC DD efef gg PP spsp rere", "Silberschimmel", 38 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000040"), "AA CC DD efef GG PP spsp rere", "Algierfuchsschimmel", 39 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000041"), "AA cchmcchm DD ee gg PP spsp rere", "Polarfuchs-Hell CP", 40 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000042"), "aa CC DD efef GG PP spsp rere", "Kohlfuchsschimmel", 41 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000043"), "aa CC DD efef gg PP spsp rere", "Blaufuchsschimmel", 42 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000044"), "aa CC DD ee GG PP spsp rere", "Kohlfuchs, hell", 43 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000045"), "AA CC DD ee GG pp spsp rere", "Goldfuchs, hell", 44 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000046"), "AA CC DD efef GG pp spsp rere", "Goldfuchsschimmel", 45 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000047"), "AA CC DD EE GG pp spsp rere", "Gold-Hell", 46 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000048"), "aa cchmcchm dd EE GG PP spsp rere", "Siam (Marder-Hell) dd", 47 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000049"), "aa cchmcchm dd EE GG PP spsp rere", "Marder dd", 48 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000050"), "aa cchmcchm DD EE gg PP spsp rere", "Zobel-Hell", 49 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000051"), "AA cchmcchm dd EE gg PP spsp rere", "Silberagouti dd CP", 50 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000052"), "AA cchmcchm dd EE gg PP spsp rere", "Silberagouti-Hell dd CP", 51 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000053"), "AA cchmcchm dd EE GG PP spsp rere", "Agouti dd CP", 52 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000054"), "AA cchmcchm dd EE GG PP spsp rere", "Agouti-Hell dd CP", 53 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000055"), "aa CC DD ee gg PP spsp rere", "Blaufuchs, hell", 54 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000056"), "aa CC DD efef GG pp spsp rere", "Rotfuchsschimmel", 55 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000057"), "AA CC DD ee gg PP spsp rere", "Polarfuchs, hell", 56 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000058"), "aa CC DD efef GG PP spsp rere", "Kohlfuchsschimmel, hell", 57 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000059"), "aa CC DD ee GG pp spsp rere", "Rotfuchs, hell", 58 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000060"), "aa cchmcchm dd EE gg PP spsp rere", "Zobel dd", 59 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000061"), "aa CC DD ee GG PP spsp rere", "Kohlfuchs-Hell", 60 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000062"), "aa cchmcchm DD ee GG PP spsp rere", "Kohlfuchs CP", 61 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000063"), "AA cchmcchm DD ee GG PP spsp rere", "Algierfuchs CP", 62 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000064"), "AA cchmcchm DD EE gg PP spsp rere", "Silberagouti CP", 63 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000065"), "AA cchmcchm DD EE GG PP spsp rere", "Agouti CP", 64 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000066"), "AA cchmcchm DD ee GG PP spsp rere", "Algierfuchs-Hell CP", 65 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000067"), "aa cchmcchm DD ee GG PP spsp rere", "Kohlfuchs,hell CP", 66 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000068"), "AA cchmcchm DD ee gg PP spsp rere", "Polarfuchs CP", 67 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000069"), "AA CC DD ee GG PP spsp rere", "Algierfuchs, hell", 68 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000070"), "AA CC dd EE GG pp spsp rere", "Topas dd", 69 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000071"), "aa cchmcchm dd EE gg PP spsp rere", "Zobel-Hell dd", 70 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000072"), "aa cchmcchm DD efef GG PP spsp rere", "Kohlfuchsschimmel CP", 71 },
|
|
{ new Guid("00000000-0000-0000-0000-000000000073"), "aa CC dd ee gg PP spsp rere", "Blaufuchs dd", 72 }
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_GerbilPhotos_GerbilId",
|
|
table: "GerbilPhotos",
|
|
column: "GerbilId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Gerbils_ColorVarietyId",
|
|
table: "Gerbils",
|
|
column: "ColorVarietyId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Gerbils_EnclosureId",
|
|
table: "Gerbils",
|
|
column: "EnclosureId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Gerbils_LitterId",
|
|
table: "Gerbils",
|
|
column: "LitterId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Gerbils_OriginContactId",
|
|
table: "Gerbils",
|
|
column: "OriginContactId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Gerbils_ReceiverContactId",
|
|
table: "Gerbils",
|
|
column: "ReceiverContactId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_HealthRecords_GerbilId",
|
|
table: "HealthRecords",
|
|
column: "GerbilId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Litters_FatherId",
|
|
table: "Litters",
|
|
column: "FatherId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Litters_MotherId",
|
|
table: "Litters",
|
|
column: "MotherId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_WeightRecords_GerbilId",
|
|
table: "WeightRecords",
|
|
column: "GerbilId");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_GerbilPhotos_Gerbils_GerbilId",
|
|
table: "GerbilPhotos",
|
|
column: "GerbilId",
|
|
principalTable: "Gerbils",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_Gerbils_Litters_LitterId",
|
|
table: "Gerbils",
|
|
column: "LitterId",
|
|
principalTable: "Litters",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.SetNull);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_Litters_Gerbils_FatherId",
|
|
table: "Litters");
|
|
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_Litters_Gerbils_MotherId",
|
|
table: "Litters");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "GerbilPhotos");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "HealthRecords");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "WeightRecords");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Gerbils");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "ColorVarieties");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Contacts");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Enclosures");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Litters");
|
|
}
|
|
}
|
|
}
|