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

@@ -395,6 +395,12 @@ namespace ClaudeDo.Data.Migrations
.HasColumnType("TEXT")
.HasColumnName("review_feedback");
b.Property<int>("RoadblockCount")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER")
.HasDefaultValue(0)
.HasColumnName("roadblock_count");
b.Property<DateTime?>("ScheduledFor")
.HasColumnType("TEXT")
.HasColumnName("scheduled_for");