1664 lines
59 KiB
C#
1664 lines
59 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using NetinaShop.Repository.Models;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace NetinaShop.Repository.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationContext))]
|
|
[Migration("20240211102121_AddPayment")]
|
|
partial class AddPayment
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasDefaultSchema("public")
|
|
.HasAnnotation("ProductVersion", "8.0.1")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<System.Guid>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("RoleClaims", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<System.Guid>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("Claims", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<System.Guid>", b =>
|
|
{
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ProviderDisplayName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("LoginProvider", "ProviderKey");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("Logins", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<System.Guid>", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("UserId", "RoleId");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("UserRoles", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<System.Guid>", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Value")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("UserId", "LoginProvider", "Name");
|
|
|
|
b.ToTable("Tokens", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Accounting.Payment", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<double>("Amount")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<string>("Authority")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("CardPan")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("FactorNumber")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("OrderId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("TransactionCode")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("Type")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("OrderId");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("Payments", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Blogs.Blog", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("CategoryId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Content")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsSuggested")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("ReadingTime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Summery")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Tags")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CategoryId");
|
|
|
|
b.ToTable("Blogs", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Blogs.BlogCategory", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("BlogCategories", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Brands.Brand", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("HasSpecialPage")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PageUrl")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Brands", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Discounts.Discount", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("AmountType")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("Count")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<long>("DiscountAmount")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<int>("DiscountPercent")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Discriminator")
|
|
.IsRequired()
|
|
.HasMaxLength(21)
|
|
.HasColumnType("character varying(21)");
|
|
|
|
b.Property<DateTime>("ExpireDate")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<bool>("HasCode")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("HasPriceCeiling")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("HasPriceFloor")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsForInvitation")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsInfinity")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsSpecialOffer")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<long>("PriceCeiling")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<long>("PriceFloor")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("StartDate")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<int>("Type")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<long>("UseCount")
|
|
.HasColumnType("bigint");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Discounts", "public");
|
|
|
|
b.HasDiscriminator<string>("Discriminator").HasValue("Discount");
|
|
|
|
b.UseTphMappingStrategy();
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Orders.Order", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<double>("DeliveryPrice")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<string>("DiscountCode")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid?>("DiscountId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<double>("DiscountPrice")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<DateTime>("DoneAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("FactorCode")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsPayed")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("OrderAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<int>("OrderStatus")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<double>("PackingPrice")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<DateTime>("PayedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<int>("PaymentMethod")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<int>("PreparingMinute")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<double>("ServicePrice")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<double>("TaxesPrice")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<double>("TotalPrice")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<double>("TotalProductsPrice")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("DiscountId");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("Orders", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Orders.OrderDelivery", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Address")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<double>("DeliveryCost")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("OrderId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("PostalCode")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ReceiverFullName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ReceiverPhoneNumber")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("ShippingId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("OrderId");
|
|
|
|
b.HasIndex("ShippingId");
|
|
|
|
b.ToTable("OrderDeliveries", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Orders.OrderProduct", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("Count")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("HasDiscount")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("OrderId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("OrderProductStatus")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<double>("PackingCost")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<double>("PackingFee")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<Guid>("ProductCategoryId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<double>("ProductCost")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<double>("ProductFee")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<double>("ProductFeeWithDiscount")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("OrderId");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.ToTable("OrderProducts", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.ProductCategories.ProductCategory", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsMain")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid?>("ParentId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ParentId");
|
|
|
|
b.ToTable("ProductCategories", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.Product", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<bool>("BeDisplayed")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<Guid>("BrandId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("CategoryId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<double>("Cost")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("EnglishName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ExpertCheck")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("HasExpressDelivery")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsEnable")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("MaxOrderCount")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<double>("PackingCost")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<string>("PersianName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<float>("Rate")
|
|
.HasColumnType("real");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("ReviewCount")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<int>("Stock")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Summery")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Tags")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("Viewed")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Warranty")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("BrandId");
|
|
|
|
b.HasIndex("CategoryId");
|
|
|
|
b.ToTable("Products", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.Review", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Comment")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsBuyer")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsConfirmed")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<float>("Rate")
|
|
.HasColumnType("real");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("Reviews", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.Specification", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Detail")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsFeature")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid?>("ParentId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ParentId");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.ToTable("Specifications", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.StorageFiles.StorageFile", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Discriminator")
|
|
.IsRequired()
|
|
.HasMaxLength(34)
|
|
.HasColumnType("character varying(34)");
|
|
|
|
b.Property<string>("FileLocation")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("FileName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("FileType")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("IsHeader")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsPrimary")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("StorageFiles", "public");
|
|
|
|
b.HasDiscriminator<string>("Discriminator").HasValue("StorageFile");
|
|
|
|
b.UseTphMappingStrategy();
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Users.ApplicationRole", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("EnglishName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("NormalizedName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("PersianName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedName")
|
|
.IsUnique()
|
|
.HasDatabaseName("RoleNameIndex");
|
|
|
|
b.ToTable("Roles", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Users.ApplicationUser", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("AccessFailedCount")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("BirthDate")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Email")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<bool>("EmailConfirmed")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("FirstName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("Gender")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("LastName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("LockoutEnabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("NationalId")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("NormalizedEmail")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("NormalizedUserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("PhoneNumberConfirmed")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("SecurityStamp")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("SignUpStatus")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("TwoFactorEnabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("UserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedEmail")
|
|
.HasDatabaseName("EmailIndex");
|
|
|
|
b.HasIndex("NormalizedUserName")
|
|
.IsUnique()
|
|
.HasDatabaseName("UserNameIndex");
|
|
|
|
b.ToTable("Users", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Users.UserAddress", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Address")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<float>("LocationLat")
|
|
.HasColumnType("real");
|
|
|
|
b.Property<float>("LocationLong")
|
|
.HasColumnType("real");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PostalCode")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ReceiverFullName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ReceiverPhoneNumber")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("UserAddresses", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Users.UserFavoriteProduct", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("UserFavoriteProducts", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Warehouses.Shipping", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<double>("DeliveryCost")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<bool>("IsExpressShipping")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsOriginalWarehouse")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRemoved")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsShipBySeller")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("ModifiedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ModifiedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("RemovedAt")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("RemovedBy")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("WarehouseName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Shippings", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Discounts.CategoryDiscount", b =>
|
|
{
|
|
b.HasBaseType("NetinaShop.Domain.Entities.Discounts.Discount");
|
|
|
|
b.Property<Guid>("CategoryId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasIndex("CategoryId");
|
|
|
|
b.HasDiscriminator().HasValue("CategoryDiscount");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Discounts.ProductDiscount", b =>
|
|
{
|
|
b.HasBaseType("NetinaShop.Domain.Entities.Discounts.Discount");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.HasDiscriminator().HasValue("ProductDiscount");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Blogs.BlogStorageFile", b =>
|
|
{
|
|
b.HasBaseType("NetinaShop.Domain.Entities.StorageFiles.StorageFile");
|
|
|
|
b.Property<Guid>("BlogId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasIndex("BlogId");
|
|
|
|
b.HasDiscriminator().HasValue("BlogStorageFile");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Brands.BrandStorageFile", b =>
|
|
{
|
|
b.HasBaseType("NetinaShop.Domain.Entities.StorageFiles.StorageFile");
|
|
|
|
b.Property<Guid>("BrandId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasIndex("BrandId");
|
|
|
|
b.HasDiscriminator().HasValue("BrandStorageFile");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.ProductCategories.ProductCategoryStorageFile", b =>
|
|
{
|
|
b.HasBaseType("NetinaShop.Domain.Entities.StorageFiles.StorageFile");
|
|
|
|
b.Property<Guid>("CategoryId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasIndex("CategoryId");
|
|
|
|
b.HasDiscriminator().HasValue("ProductCategoryStorageFile");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.ProductStorageFile", b =>
|
|
{
|
|
b.HasBaseType("NetinaShop.Domain.Entities.StorageFiles.StorageFile");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.HasDiscriminator().HasValue("ProductStorageFile");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<System.Guid>", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationRole", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<System.Guid>", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<System.Guid>", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<System.Guid>", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationRole", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<System.Guid>", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Accounting.Payment", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Orders.Order", "Order")
|
|
.WithMany("Payments")
|
|
.HasForeignKey("OrderId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", "User")
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Order");
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Blogs.Blog", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Blogs.BlogCategory", "Category")
|
|
.WithMany("Blogs")
|
|
.HasForeignKey("CategoryId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Category");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Orders.Order", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Discounts.Discount", null)
|
|
.WithMany("Orders")
|
|
.HasForeignKey("DiscountId");
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", "User")
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Orders.OrderDelivery", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Orders.Order", "Order")
|
|
.WithMany("OrderDeliveries")
|
|
.HasForeignKey("OrderId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.Warehouses.Shipping", "Shipping")
|
|
.WithMany()
|
|
.HasForeignKey("ShippingId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Order");
|
|
|
|
b.Navigation("Shipping");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Orders.OrderProduct", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Orders.Order", "Order")
|
|
.WithMany("OrderProducts")
|
|
.HasForeignKey("OrderId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.Products.Product", "Product")
|
|
.WithMany("OrderProducts")
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Order");
|
|
|
|
b.Navigation("Product");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.ProductCategories.ProductCategory", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.ProductCategories.ProductCategory", "Parent")
|
|
.WithMany()
|
|
.HasForeignKey("ParentId");
|
|
|
|
b.Navigation("Parent");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.Product", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Brands.Brand", "Brand")
|
|
.WithMany("Products")
|
|
.HasForeignKey("BrandId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.ProductCategories.ProductCategory", "Category")
|
|
.WithMany("Products")
|
|
.HasForeignKey("CategoryId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Brand");
|
|
|
|
b.Navigation("Category");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.Review", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Products.Product", "Product")
|
|
.WithMany("Reviews")
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", "User")
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Product");
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.Specification", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Products.Specification", "Parent")
|
|
.WithMany("Children")
|
|
.HasForeignKey("ParentId");
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.Products.Product", "Product")
|
|
.WithMany("Specifications")
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Parent");
|
|
|
|
b.Navigation("Product");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Users.UserAddress", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", "User")
|
|
.WithMany("Addresses")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Users.UserFavoriteProduct", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Products.Product", "Product")
|
|
.WithMany()
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("NetinaShop.Domain.Entities.Users.ApplicationUser", "User")
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Product");
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Discounts.CategoryDiscount", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.ProductCategories.ProductCategory", "Category")
|
|
.WithMany()
|
|
.HasForeignKey("CategoryId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Category");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Discounts.ProductDiscount", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Products.Product", "Product")
|
|
.WithMany()
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Product");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Blogs.BlogStorageFile", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Blogs.Blog", "Blog")
|
|
.WithMany("Files")
|
|
.HasForeignKey("BlogId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Blog");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Brands.BrandStorageFile", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Brands.Brand", "Brand")
|
|
.WithMany("Files")
|
|
.HasForeignKey("BrandId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Brand");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.ProductCategories.ProductCategoryStorageFile", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.ProductCategories.ProductCategory", "Category")
|
|
.WithMany("Files")
|
|
.HasForeignKey("CategoryId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Category");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.ProductStorageFile", b =>
|
|
{
|
|
b.HasOne("NetinaShop.Domain.Entities.Products.Product", "Product")
|
|
.WithMany("Files")
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Product");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Blogs.Blog", b =>
|
|
{
|
|
b.Navigation("Files");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Blogs.BlogCategory", b =>
|
|
{
|
|
b.Navigation("Blogs");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Brands.Brand", b =>
|
|
{
|
|
b.Navigation("Files");
|
|
|
|
b.Navigation("Products");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Discounts.Discount", b =>
|
|
{
|
|
b.Navigation("Orders");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Orders.Order", b =>
|
|
{
|
|
b.Navigation("OrderDeliveries");
|
|
|
|
b.Navigation("OrderProducts");
|
|
|
|
b.Navigation("Payments");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.ProductCategories.ProductCategory", b =>
|
|
{
|
|
b.Navigation("Files");
|
|
|
|
b.Navigation("Products");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.Product", b =>
|
|
{
|
|
b.Navigation("Files");
|
|
|
|
b.Navigation("OrderProducts");
|
|
|
|
b.Navigation("Reviews");
|
|
|
|
b.Navigation("Specifications");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Products.Specification", b =>
|
|
{
|
|
b.Navigation("Children");
|
|
});
|
|
|
|
modelBuilder.Entity("NetinaShop.Domain.Entities.Users.ApplicationUser", b =>
|
|
{
|
|
b.Navigation("Addresses");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|