IW4M-Admin/Data/Migrations/MySql/20210123023921_UpdateEFMetaToSupportNonClientMeta.cs

53 lines
1.7 KiB
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore.Migrations;
namespace Data.Migrations.MySql
{
public partial class UpdateEFMetaToSupportNonClientMeta : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_EFMeta_EFClients_ClientId",
table: "EFMeta");
migrationBuilder.AlterColumn<int>(
name: "ClientId",
table: "EFMeta",
nullable: true,
oldClrType: typeof(int),
oldType: "int");
migrationBuilder.AddForeignKey(
name: "FK_EFMeta_EFClients_ClientId",
table: "EFMeta",
column: "ClientId",
principalTable: "EFClients",
principalColumn: "ClientId",
onDelete: ReferentialAction.Restrict);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_EFMeta_EFClients_ClientId",
table: "EFMeta");
migrationBuilder.AlterColumn<int>(
name: "ClientId",
table: "EFMeta",
type: "int",
nullable: false,
oldClrType: typeof(int),
oldNullable: true);
migrationBuilder.AddForeignKey(
name: "FK_EFMeta_EFClients_ClientId",
table: "EFMeta",
column: "ClientId",
principalTable: "EFClients",
principalColumn: "ClientId",
onDelete: ReferentialAction.Cascade);
}
}
}