seperated out start and end date and time into seprate date and time fields

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