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
@@ -12,11 +12,11 @@ namespace Data.Migrations
{
migrationBuilder.DropColumn(
name: "Name",
table: "TimeSlots");
table: "Teams");
migrationBuilder.AddColumn<int>(
name: "Number",
table: "TimeSlots",
table: "Teams",
type: "INTEGER",
nullable: false,
defaultValue: 0);
@@ -27,11 +27,11 @@ namespace Data.Migrations
{
migrationBuilder.DropColumn(
name: "Number",
table: "TimeSlots");
table: "Teams");
migrationBuilder.AddColumn<string>(
name: "Name",
table: "TimeSlots",
table: "Teams",
type: "TEXT",
nullable: false,
defaultValue: "");