feat: add LawType property to Law model and update related classes

This commit is contained in:
MahanCh
2025-08-26 10:43:05 +03:30
parent b1a15bfa54
commit a71205aa2b
10 changed files with 10577 additions and 9 deletions

View File

@@ -3787,6 +3787,10 @@ namespace CompanyManagment.EFCore.Migrations
b.Property<bool>("IsActive")
.HasColumnType("bit");
b.Property<string>("LawType")
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<string>("Title")
.IsRequired()
.HasMaxLength(255)
@@ -5586,6 +5590,7 @@ namespace CompanyManagment.EFCore.Migrations
.HasColumnType("uniqueidentifier");
b.Property<string>("RegistrationStatus")
.IsRequired()
.HasMaxLength(30)
.HasColumnType("nvarchar(30)");