feat(roadblock): persist roadblock count on the task

This commit is contained in:
mika kuns
2026-06-04 14:58:59 +02:00
parent 4d52845130
commit 49b9f1ffde
8 changed files with 824 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ClaudeDo.Data.Migrations
{
/// <inheritdoc />
public partial class AddRoadblockCount : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "roadblock_count",
table: "tasks",
type: "INTEGER",
nullable: false,
defaultValue: 0);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "roadblock_count",
table: "tasks");
}
}
}