42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Server.DB.Migrations;
|
|
|
|
/// <inheritdoc />
|
|
public partial class MissingCascadeDeletionOnCharacter : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_InventoryItems_Characters_CharacterId",
|
|
table: "InventoryItems");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_InventoryItems_Characters_CharacterId",
|
|
table: "InventoryItems",
|
|
column: "CharacterId",
|
|
principalTable: "Characters",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_InventoryItems_Characters_CharacterId",
|
|
table: "InventoryItems");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_InventoryItems_Characters_CharacterId",
|
|
table: "InventoryItems",
|
|
column: "CharacterId",
|
|
principalTable: "Characters",
|
|
principalColumn: "Id");
|
|
}
|
|
}
|