feat: add EstimatedMinutes field and general PUT update endpoint for tasks

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
aj
2026-02-26 22:10:48 -05:00
co-authored by Claude Opus 4.6
parent e12f78c479
commit 58d57509e5
7 changed files with 321 additions and 0 deletions
@@ -189,6 +189,9 @@ namespace TaskTracker.Infrastructure.Migrations
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<int?>("EstimatedMinutes")
.HasColumnType("int");
b.Property<int?>("ParentTaskId")
.HasColumnType("int");