diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-03-06 07:41:35 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-03-06 07:41:35 +0300 |
commit | 0c4d13caed53b2702eef41461d0c8a4b25df48f6 (patch) | |
tree | 6fb6d2d54cedce1c204fb30b75f4d470fbf7ee83 /Migrations/20230221044417_Init.Designer.cs | |
parent | cdd58a8f518d037658518c233e74beea22d03906 (diff) |
Base authorization/authentification
Diffstat (limited to 'Migrations/20230221044417_Init.Designer.cs')
-rw-r--r-- | Migrations/20230221044417_Init.Designer.cs | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/Migrations/20230221044417_Init.Designer.cs b/Migrations/20230221044417_Init.Designer.cs deleted file mode 100644 index 658e6b7..0000000 --- a/Migrations/20230221044417_Init.Designer.cs +++ /dev/null @@ -1,83 +0,0 @@ -// <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("20230221044417_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>("Description") - .IsRequired() - .HasColumnType("TEXT"); - - 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 - } - } -} |