feat: added new event details

This commit is contained in:
Blake Ridgway 2025-06-21 16:30:12 -05:00
parent 9ecaf8350b
commit 5c81fb70fd
4 changed files with 180 additions and 0 deletions

View file

@ -23,12 +23,18 @@ namespace turf_tasker.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<decimal?>("AppliedAmount")
.HasColumnType("TEXT");
b.Property<DateTime>("EventDate")
.HasColumnType("TEXT");
b.Property<int>("EventType")
.HasColumnType("INTEGER");
b.Property<decimal?>("MowerHeightInches")
.HasColumnType("TEXT");
b.Property<int?>("MowingPattern")
.HasColumnType("INTEGER");
@ -36,6 +42,14 @@ namespace turf_tasker.Migrations
.HasMaxLength(500)
.HasColumnType("TEXT");
b.Property<string>("ProblemObserved")
.HasMaxLength(250)
.HasColumnType("TEXT");
b.Property<string>("ProductUsed")
.HasMaxLength(200)
.HasColumnType("TEXT");
b.HasKey("Id");
b.ToTable("LawnCareEvents");