fixed customer id type

This commit is contained in:
2026-07-22 19:34:41 -05:00
parent f5efccea40
commit fc44790c96
4 changed files with 331 additions and 4 deletions
@@ -211,9 +211,8 @@ namespace barkmanapi.Migrations
.HasColumnType("text")
.HasColumnName("address");
b.Property<string>("CustomerId")
.IsRequired()
.HasColumnType("text")
b.Property<int>("CustomerId")
.HasColumnType("integer")
.HasColumnName("customer_id");
b.Property<DateTimeOffset>("EndDate")