2019-11-10 14:45:44 +00:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
2024-05-03 22:18:49 +01:00
|
|
|
|
namespace Aaru.Server.Database.Migrations
|
2019-11-10 14:45:44 +00:00
|
|
|
|
{
|
|
|
|
|
|
public partial class CascadeDeleteDensityCodes : Migration
|
|
|
|
|
|
{
|
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
|
{
|
|
|
|
|
|
migrationBuilder.DropForeignKey("FK_DensityCode_SscSupportedMedia_SscSupportedMediaId", "DensityCode");
|
|
|
|
|
|
|
|
|
|
|
|
migrationBuilder.AddForeignKey("FK_DensityCode_SscSupportedMedia_SscSupportedMediaId", "DensityCode",
|
|
|
|
|
|
"SscSupportedMediaId", "SscSupportedMedia", principalColumn: "Id",
|
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
|
{
|
|
|
|
|
|
migrationBuilder.DropForeignKey("FK_DensityCode_SscSupportedMedia_SscSupportedMediaId", "DensityCode");
|
|
|
|
|
|
|
|
|
|
|
|
migrationBuilder.AddForeignKey("FK_DensityCode_SscSupportedMedia_SscSupportedMediaId", "DensityCode",
|
|
|
|
|
|
"SscSupportedMediaId", "SscSupportedMedia", principalColumn: "Id",
|
|
|
|
|
|
onDelete: ReferentialAction.SetNull);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|