using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Nuuru.Server.Migrations
{
///
public partial class RestrictForumCategoryDelete : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_ForumThreads_ForumCategories_CategoryId",
table: "ForumThreads");
migrationBuilder.AddForeignKey(
name: "FK_ForumThreads_ForumCategories_CategoryId",
table: "ForumThreads",
column: "CategoryId",
principalTable: "ForumCategories",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_ForumThreads_ForumCategories_CategoryId",
table: "ForumThreads");
migrationBuilder.AddForeignKey(
name: "FK_ForumThreads_ForumCategories_CategoryId",
table: "ForumThreads",
column: "CategoryId",
principalTable: "ForumCategories",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
}
}
}