feat(dal,api): в таблицу Tnk, добавлено поле ShortName

This commit is contained in:
Mikhail Trubnikov
2025-12-09 10:25:41 +10:00
parent 24759bb3e0
commit f74776cdf7
9 changed files with 4021 additions and 20 deletions

View File

@@ -2777,21 +2777,21 @@ namespace PARR.DAL.Migrations
b.Property<DateTimeOffset?>("DateModified")
.HasColumnType("timestamp with time zone");
b.Property<int>("EsppId")
b.Property<int?>("EsppId")
.HasColumnType("integer");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("text");
b.Property<string>("ShortName")
.HasColumnType("text");
b.Property<Guid>("SubprocessId")
.HasColumnType("uuid");
b.HasKey("Id");
b.HasIndex("EsppId")
.IsUnique();
b.HasIndex("SubprocessId");
b.ToTable("Tnks");