manager-service/ManagerService/Migrations/20260708143339_RemoveGuidedPathSectionMapRelation.cs
2026-07-08 17:00:43 +02:00

49 lines
1.4 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ManagerService.Migrations
{
/// <inheritdoc />
public partial class RemoveGuidedPathSectionMapRelation : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_GuidedPaths_Sections_SectionMapId",
table: "GuidedPaths");
migrationBuilder.DropIndex(
name: "IX_GuidedPaths_SectionMapId",
table: "GuidedPaths");
migrationBuilder.DropColumn(
name: "SectionMapId",
table: "GuidedPaths");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "SectionMapId",
table: "GuidedPaths",
type: "text",
nullable: true);
migrationBuilder.CreateIndex(
name: "IX_GuidedPaths_SectionMapId",
table: "GuidedPaths",
column: "SectionMapId");
migrationBuilder.AddForeignKey(
name: "FK_GuidedPaths_Sections_SectionMapId",
table: "GuidedPaths",
column: "SectionMapId",
principalTable: "Sections",
principalColumn: "Id");
}
}
}