Merge branch 'worktree-agent-a9d8edbd439109a45'

This commit is contained in:
2026-06-22 22:53:33 +02:00
15 changed files with 2071 additions and 14 deletions

View File

@@ -755,6 +755,15 @@ namespace GerbilManagerWebAPI.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("uuid");
b.Property<int?>("Capacity")
.HasColumnType("integer");
b.Property<int?>("CleaningCycleDays")
.HasColumnType("integer");
b.Property<DateOnly?>("LastCleanedDate")
.HasColumnType("date");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("text");
@@ -762,6 +771,9 @@ namespace GerbilManagerWebAPI.Migrations
b.Property<string>("Notes")
.HasColumnType("text");
b.Property<string>("Size")
.HasColumnType("text");
b.HasKey("Id");
b.ToTable("Enclosures");