功能修改
This commit is contained in:
@@ -18545,8 +18545,35 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.OwnsOne("IRaCIS.Core.Domain.Models.DefaultSegmentNameDto", "DefaultSegmentName", b1 =>
|
||||
{
|
||||
b1.Property<Guid>("ReadingQuestionCriterionTrialId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b1.Property<string>("SegmentNameList")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b1.Property<string>("SegmentationName")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
||||
b1.HasKey("ReadingQuestionCriterionTrialId");
|
||||
|
||||
b1.ToTable("ReadingQuestionCriterionTrial");
|
||||
|
||||
b1.ToJson("DefaultSegmentName");
|
||||
|
||||
b1.WithOwner()
|
||||
.HasForeignKey("ReadingQuestionCriterionTrialId");
|
||||
});
|
||||
|
||||
b.Navigation("CreateUserRole");
|
||||
|
||||
b.Navigation("DefaultSegmentName")
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Trial");
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user