Add IsCancelled to Layer model

This commit is contained in:
Michał Zieliński
2025-05-29 11:41:36 +02:00
parent f84029ee4c
commit d4044aa7b3
10 changed files with 431 additions and 13 deletions

View File

@@ -63,6 +63,9 @@ namespace WebAPI.Migrations
b.Property<Guid>("CreatedById")
.HasColumnType("uniqueidentifier");
b.Property<bool>("IsCancelled")
.HasColumnType("bit");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");