fixed a lot of stuff

This commit is contained in:
2026-07-25 16:19:23 -05:00
parent 1b478cd7ba
commit fb25b8aba6
8 changed files with 21 additions and 406 deletions
@@ -215,14 +215,10 @@ namespace barkmanapi.Migrations
.HasColumnType("integer")
.HasColumnName("customer_id");
b.Property<DateOnly>("EndDate")
.HasColumnType("date")
b.Property<DateTime>("EndDate")
.HasColumnType("timestamp with time zone")
.HasColumnName("end_date");
b.Property<TimeOnly>("EndTime")
.HasColumnType("time without time zone")
.HasColumnName("end_time");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("text")
@@ -232,14 +228,10 @@ namespace barkmanapi.Migrations
.HasColumnType("text")
.HasColumnName("notes");
b.Property<DateOnly>("StartDate")
.HasColumnType("date")
b.Property<DateTime>("StartDate")
.HasColumnType("timestamp with time zone")
.HasColumnName("start_date");
b.Property<TimeOnly>("StartTime")
.HasColumnType("time without time zone")
.HasColumnName("start_time");
b.Property<string>("StatusId")
.HasColumnType("text")
.HasColumnName("status_id");