feat(dal): таблица WeekendDays поле Date - уникальное значение

This commit is contained in:
Mikhail Trubnikov
2024-09-13 12:06:51 +10:00
parent 60403ccbf9
commit add572f438
4 changed files with 3101 additions and 1 deletions

View File

@@ -2422,6 +2422,9 @@ namespace PARR.DAL.Migrations
b.HasKey("Id");
b.HasIndex("Date")
.IsUnique();
b.ToTable("WeekendDays");
});