feat(core,dal,domain,templateUpdater): Задания роботам выдаюстя с учетом подмены и множества переименований

This commit is contained in:
Mikhail Trubnikov
2026-07-29 16:31:50 +10:00
parent 7d5fb23daf
commit acdb6ec893
6 changed files with 4306 additions and 54 deletions

View File

@@ -2860,6 +2860,9 @@ namespace PARR.DAL.Migrations
b.Property<DateTimeOffset>("DateCreated")
.HasColumnType("timestamp with time zone");
b.Property<DateTimeOffset?>("DateModified")
.HasColumnType("timestamp with time zone");
b.Property<string>("OldName")
.IsRequired()
.HasColumnType("text")
@@ -2867,8 +2870,7 @@ namespace PARR.DAL.Migrations
b.HasKey("TemplateId");
b.HasIndex("OldName")
.IsUnique();
b.HasIndex("OldName");
b.ToTable("TemplateRenamePendings", "template", t =>
{