using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace w4c_workflows.Data.Migrations { /// public partial class AddRunStartTaskId : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "StartTaskId", schema: "workflows", table: "WorkflowRuns", type: "uuid", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "StartTaskId", schema: "workflows", table: "WorkflowRuns"); } } }