Roll back data migration issue with "TimeSlots" replacing "Teams"

This commit is contained in:
2025-09-26 10:13:00 -04:00
parent 1e2e2724cf
commit 1ea096469b
6 changed files with 25 additions and 25 deletions
+5 -5
View File
@@ -83,7 +83,7 @@ namespace Data.Migrations
b.HasIndex("Name");
b.ToTable("Events");
b.ToTable("Events", (string)null);
});
modelBuilder.Entity("Core.Entities.Student", b =>
@@ -128,7 +128,7 @@ namespace Data.Migrations
b.HasKey("Id");
b.ToTable("Students");
b.ToTable("Students", (string)null);
});
modelBuilder.Entity("Core.Entities.StudentEventRanking", b =>
@@ -146,7 +146,7 @@ namespace Data.Migrations
b.HasIndex("StudentId");
b.ToTable("StudentEventRanking");
b.ToTable("StudentEventRanking", (string)null);
});
modelBuilder.Entity("Core.Entities.Team", b =>
@@ -173,7 +173,7 @@ namespace Data.Migrations
b.HasIndex("EventId");
b.ToTable("TimeSlots");
b.ToTable("Teams", (string)null);
});
modelBuilder.Entity("StudentTeam", b =>
@@ -188,7 +188,7 @@ namespace Data.Migrations
b.HasIndex("TeamsId");
b.ToTable("StudentTeam");
b.ToTable("StudentTeam", (string)null);
});
modelBuilder.Entity("Core.Entities.StudentEventRanking", b =>