using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Data.Migrations.MySql { public partial class MakeEFPenaltyLinkIdNullable : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_EFPenalties_EFAliasLinks_LinkId", table: "EFPenalties"); migrationBuilder.AlterColumn( name: "LinkId", table: "EFPenalties", type: "int", nullable: true, oldClrType: typeof(int), oldType: "int"); migrationBuilder.AddForeignKey( name: "FK_EFPenalties_EFAliasLinks_LinkId", table: "EFPenalties", column: "LinkId", principalTable: "EFAliasLinks", principalColumn: "AliasLinkId"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_EFPenalties_EFAliasLinks_LinkId", table: "EFPenalties"); migrationBuilder.AlterColumn( name: "LinkId", table: "EFPenalties", type: "int", nullable: false, defaultValue: 0, oldClrType: typeof(int), oldType: "int", oldNullable: true); migrationBuilder.AddForeignKey( name: "FK_EFPenalties_EFAliasLinks_LinkId", table: "EFPenalties", column: "LinkId", principalTable: "EFAliasLinks", principalColumn: "AliasLinkId", onDelete: ReferentialAction.Cascade); } } }