feat: add LawId to InstitutionContract and related classes for improved contract management

This commit is contained in:
2025-10-13 09:29:59 +03:30
parent fdf7fa0d3c
commit 8efffe8b75
9 changed files with 11021 additions and 5 deletions

View File

@@ -3130,6 +3130,9 @@ namespace CompanyManagment.EFCore.Migrations
b.Property<bool>("IsInstallment")
.HasColumnType("bit");
b.Property<long>("LawId")
.HasColumnType("bigint");
b.Property<double>("Obligation")
.HasColumnType("float");
@@ -4073,6 +4076,9 @@ namespace CompanyManagment.EFCore.Migrations
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<int>("Version")
.HasColumnType("int");
b.HasKey("id");
b.ToTable("Law", (string)null);