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

30 lines
796 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ManagerService.Migrations
{
/// <inheritdoc />
public partial class AddGuidedStepIsGeoTriggered : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsGeoTriggered",
table: "GuidedSteps",
type: "boolean",
nullable: false,
defaultValue: false);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsGeoTriggered",
table: "GuidedSteps");
}
}
}