a basket
This commit is contained in:
@ -527,6 +527,9 @@ namespace Yavsc.Migrations
|
||||
b.Property<string>("ActivityCode")
|
||||
.IsRequired();
|
||||
|
||||
b.Property<string>("AdditionalInfo")
|
||||
.HasAnnotation("MaxLength", 512);
|
||||
|
||||
b.Property<string>("ClientId")
|
||||
.IsRequired();
|
||||
|
||||
@ -604,8 +607,6 @@ namespace Yavsc.Migrations
|
||||
|
||||
b.Property<int>("Gender");
|
||||
|
||||
b.Property<long?>("HairMultiCutQueryId");
|
||||
|
||||
b.Property<int>("Length");
|
||||
|
||||
b.Property<bool>("Shampoo");
|
||||
@ -615,6 +616,18 @@ namespace Yavsc.Migrations
|
||||
b.HasKey("Id");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Haircut.HairPrestationCollectionItem", b =>
|
||||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<long>("PrestationId");
|
||||
|
||||
b.Property<long>("QueryId");
|
||||
|
||||
b.HasKey("Id");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Haircut.HairTaint", b =>
|
||||
{
|
||||
b.Property<long>("Id")
|
||||
@ -1222,11 +1235,15 @@ namespace Yavsc.Migrations
|
||||
.HasForeignKey("PerformerId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Haircut.HairPrestation", b =>
|
||||
modelBuilder.Entity("Yavsc.Models.Haircut.HairPrestationCollectionItem", b =>
|
||||
{
|
||||
b.HasOne("Yavsc.Models.Haircut.HairPrestation")
|
||||
.WithMany()
|
||||
.HasForeignKey("PrestationId");
|
||||
|
||||
b.HasOne("Yavsc.Models.Haircut.HairMultiCutQuery")
|
||||
.WithMany()
|
||||
.HasForeignKey("HairMultiCutQueryId");
|
||||
.HasForeignKey("QueryId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Haircut.HairTaint", b =>
|
||||
|
Reference in New Issue
Block a user