fix(dir): 🐛 column name mismatch between query & command

This commit is contained in:
Collin M. Barrett 2021-11-18 16:25:49 -06:00
parent 539565bc87
commit afe57772b3

View file

@ -13,8 +13,8 @@ public record Change
public DateTime? ApprovedAt { get; private init; }
public DateTime? RejectedAt { get; private init; }
public string? RejectedReason { get; private init; }
public JsonDocument? AggregateBefore { get; private init; }
public JsonDocument? AggregateAfter { get; private init; }
public JsonDocument? Before { get; private init; }
public JsonDocument? After { get; private init; }
public AggregateType AggregateType { get; private init; }
public int? FilterListId { get; private init; }
public FilterList? FilterList { get; }