summaryrefslogtreecommitdiff
path: root/Migrations/20230201044832_Init.Designer.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-02-01 07:49:31 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-02-01 07:49:31 +0300
commit8faebbd63cf19fd21947c1f98ac80cc2e714c5ba (patch)
treef7dab707399541b5cdf0eca194667d9a514ea9d1 /Migrations/20230201044832_Init.Designer.cs
parenta9e52b199b0661b85ca0c7e1318c30742a1168bd (diff)
Add one to many relations
Diffstat (limited to 'Migrations/20230201044832_Init.Designer.cs')
-rw-r--r--Migrations/20230201044832_Init.Designer.cs79
1 files changed, 79 insertions, 0 deletions
diff --git a/Migrations/20230201044832_Init.Designer.cs b/Migrations/20230201044832_Init.Designer.cs
new file mode 100644
index 0000000..6b0762e
--- /dev/null
+++ b/Migrations/20230201044832_Init.Designer.cs
@@ -0,0 +1,79 @@
+// <auto-generated />
+using System;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using MyDarling.Models;
+
+#nullable disable
+
+namespace MyDarling.Migrations
+{
+ [DbContext(typeof(DataContext))]
+ [Migration("20230201044832_Init")]
+ partial class Init
+ {
+ /// <inheritdoc />
+ protected override void BuildTargetModel(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
+ }
+ }
+}