440 lines
15 KiB
C#
440 lines
15 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using CMSMicroservice.Infrastructure.Persistence;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace CMSMicroservice.Infrastructure.Persistence.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationDbContext))]
|
|
partial class ApplicationDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasDefaultSchema("CMS")
|
|
.HasAnnotation("ProductVersion", "7.0.0")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
|
|
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.OtpToken", b =>
|
|
{
|
|
b.Property<long>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("bigint");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
|
|
|
|
b.Property<int>("Attempts")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("CodeHash")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("ExpiresAt")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsUsed")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModified")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("LastModifiedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Mobile")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Purpose")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("OtpTokens", "CMS");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.Package", b =>
|
|
{
|
|
b.Property<long>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("bigint");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("ImagePath")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModified")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("LastModifiedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<long>("Price")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Packages", "CMS");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.Role", b =>
|
|
{
|
|
b.Property<long>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("bigint");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModified")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("LastModifiedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Roles", "CMS");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.User", b =>
|
|
{
|
|
b.Property<long>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("bigint");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
|
|
|
|
b.Property<string>("AvatarPath")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("FirstName")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsMobileVerified")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsRulesAccepted")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModified")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("LastModifiedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("LastName")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Mobile")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime?>("MobileVerifiedAt")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("NationalCode")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<long?>("ParentId")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<string>("ReferralCode")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime?>("RulesAcceptedAt")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ParentId");
|
|
|
|
b.ToTable("Users", "CMS");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.UserAddress", b =>
|
|
{
|
|
b.Property<long>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("bigint");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
|
|
|
|
b.Property<string>("Address")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<long>("CityId")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<bool>("IsDefault")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModified")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("LastModifiedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("PostalCode")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<long>("UserId")
|
|
.HasColumnType("bigint");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("UserAddresss", "CMS");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.UserOrder", b =>
|
|
{
|
|
b.Property<long>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("bigint");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModified")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("LastModifiedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<long>("PackageId")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<DateTime?>("PaymentDate")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<bool>("PaymentStatus")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<long>("Price")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<long?>("TransactionId")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<long>("UserId")
|
|
.HasColumnType("bigint");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("PackageId");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("UserOrders", "CMS");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.UserRole", b =>
|
|
{
|
|
b.Property<long>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("bigint");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("CreatedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModified")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("LastModifiedBy")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<long>("RoleId")
|
|
.HasColumnType("bigint");
|
|
|
|
b.Property<long>("UserId")
|
|
.HasColumnType("bigint");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("UserRoles", "CMS");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.User", b =>
|
|
{
|
|
b.HasOne("CMSMicroservice.Domain.Entities.User", "Parent")
|
|
.WithMany("Users")
|
|
.HasForeignKey("ParentId");
|
|
|
|
b.Navigation("Parent");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.UserAddress", b =>
|
|
{
|
|
b.HasOne("CMSMicroservice.Domain.Entities.User", "User")
|
|
.WithMany("UserAddresss")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.UserOrder", b =>
|
|
{
|
|
b.HasOne("CMSMicroservice.Domain.Entities.Package", "Package")
|
|
.WithMany("UserOrders")
|
|
.HasForeignKey("PackageId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("CMSMicroservice.Domain.Entities.User", "User")
|
|
.WithMany("UserOrders")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Package");
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.UserRole", b =>
|
|
{
|
|
b.HasOne("CMSMicroservice.Domain.Entities.Role", "Role")
|
|
.WithMany("UserRoles")
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("CMSMicroservice.Domain.Entities.User", "User")
|
|
.WithMany("UserRoles")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Role");
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.Package", b =>
|
|
{
|
|
b.Navigation("UserOrders");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.Role", b =>
|
|
{
|
|
b.Navigation("UserRoles");
|
|
});
|
|
|
|
modelBuilder.Entity("CMSMicroservice.Domain.Entities.User", b =>
|
|
{
|
|
b.Navigation("UserAddresss");
|
|
|
|
b.Navigation("UserOrders");
|
|
|
|
b.Navigation("UserRoles");
|
|
|
|
b.Navigation("Users");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|