Cascade delete archives when game is deleted

This commit is contained in:
Pat Hartl 2023-01-09 01:35:47 -06:00
parent 2625aec8ff
commit 1c51b2643e
3 changed files with 1061 additions and 1 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,38 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace LANCommander.Migrations
{
public partial class CascadeGameArchiveDeletion : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_Archive_Games_GameId",
table: "Archive");
migrationBuilder.AddForeignKey(
name: "FK_Archive_Games_GameId",
table: "Archive",
column: "GameId",
principalTable: "Games",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_Archive_Games_GameId",
table: "Archive");
migrationBuilder.AddForeignKey(
name: "FK_Archive_Games_GameId",
table: "Archive",
column: "GameId",
principalTable: "Games",
principalColumn: "Id");
}
}
}

View file

@ -794,7 +794,9 @@ namespace LANCommander.Migrations
b.HasOne("LANCommander.Data.Models.Game", "Game")
.WithMany("Archives")
.HasForeignKey("GameId");
.HasForeignKey("GameId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("LANCommander.Data.Models.Archive", "LastVersion")
.WithMany()