using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ManagerService.Migrations
{
///
public partial class RemoveGuidedStepTriggerGeoPoint : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_GuidedSteps_GeoPoints_TriggerGeoPointId",
table: "GuidedSteps");
migrationBuilder.DropIndex(
name: "IX_GuidedSteps_TriggerGeoPointId",
table: "GuidedSteps");
migrationBuilder.DropColumn(
name: "TriggerGeoPointId",
table: "GuidedSteps");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "TriggerGeoPointId",
table: "GuidedSteps",
type: "integer",
nullable: true);
migrationBuilder.CreateIndex(
name: "IX_GuidedSteps_TriggerGeoPointId",
table: "GuidedSteps",
column: "TriggerGeoPointId");
migrationBuilder.AddForeignKey(
name: "FK_GuidedSteps_GeoPoints_TriggerGeoPointId",
table: "GuidedSteps",
column: "TriggerGeoPointId",
principalTable: "GeoPoints",
principalColumn: "Id");
}
}
}