feat(tasks): persist task deadlines
This commit is contained in:
@@ -189,6 +189,9 @@ namespace TaskTracker.Infrastructure.Migrations
|
||||
b.Property<string>("Description")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<DateTimeOffset?>("DueAt")
|
||||
.HasColumnType("datetimeoffset");
|
||||
|
||||
b.Property<int?>("EstimatedMinutes")
|
||||
.HasColumnType("int");
|
||||
|
||||
@@ -210,6 +213,8 @@ namespace TaskTracker.Infrastructure.Migrations
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("DueAt");
|
||||
|
||||
b.HasIndex("ParentTaskId");
|
||||
|
||||
b.ToTable("Tasks");
|
||||
|
||||
Reference in New Issue
Block a user