Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
47 changed files with 841 additions and 1 deletions
Showing only changes of commit 9493d4340f - Show all commits

View File

@ -20,6 +20,6 @@ public class LectureHallConfiguration : IEntityTypeConfiguration<LectureHall>
.HasOne(l => l.Campus) .HasOne(l => l.Campus)
.WithMany(c => c.LectureHalls) .WithMany(c => c.LectureHalls)
.HasForeignKey(d => d.CampusId) .HasForeignKey(d => d.CampusId)
.OnDelete(DeleteBehavior.Cascade); .OnDelete(DeleteBehavior.Restrict);
} }
} }