77 lines
2.3 KiB
C#
77 lines
2.3 KiB
C#
|
// <auto-generated />
|
|||
|
using System;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||
|
using MyDarling.Models;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace MyDarling.Migrations
|
|||
|
{
|
|||
|
[DbContext(typeof(DataContext))]
|
|||
|
partial class DataContextModelSnapshot : ModelSnapshot
|
|||
|
{
|
|||
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
#pragma warning disable 612, 618
|
|||
|
modelBuilder.HasAnnotation("ProductVersion", "7.0.2");
|
|||
|
|
|||
|
modelBuilder.Entity("MyDarling.Models.Figure", b =>
|
|||
|
{
|
|||
|
b.Property<int>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("INTEGER");
|
|||
|
|
|||
|
b.Property<string>("FilePath")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<int?>("UnderwearBundleId")
|
|||
|
.HasColumnType("INTEGER");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.HasIndex("UnderwearBundleId");
|
|||
|
|
|||
|
b.ToTable("Figures");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("MyDarling.Models.UnderwearBundle", b =>
|
|||
|
{
|
|||
|
b.Property<int>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("INTEGER");
|
|||
|
|
|||
|
b.Property<string>("Description")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<string>("Name")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<decimal>("Price")
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("UnderwearBundles");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("MyDarling.Models.Figure", b =>
|
|||
|
{
|
|||
|
b.HasOne("MyDarling.Models.UnderwearBundle", null)
|
|||
|
.WithMany("Figures")
|
|||
|
.HasForeignKey("UnderwearBundleId");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("MyDarling.Models.UnderwearBundle", b =>
|
|||
|
{
|
|||
|
b.Navigation("Figures");
|
|||
|
});
|
|||
|
#pragma warning restore 612, 618
|
|||
|
}
|
|||
|
}
|
|||
|
}
|