using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ClaudeDo.Data.Migrations { /// public partial class AddHandlerCommitRange : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "handler_base_commit", table: "tasks", type: "TEXT", nullable: true); migrationBuilder.AddColumn( name: "handler_head_commit", table: "tasks", type: "TEXT", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "handler_base_commit", table: "tasks"); migrationBuilder.DropColumn( name: "handler_head_commit", table: "tasks"); } } }