// using System; using Hutopy.Infrastructure.Data; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace Hutopy.Infrastructure.Migrations { [DbContext(typeof(ApplicationDbContext))] partial class ApplicationDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "8.0.4") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); modelBuilder.Entity("Hutopy.Domain.Entities.FutureCreator", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("uniqueidentifier"); b.Property("Created") .HasColumnType("datetimeoffset"); b.Property("CreatedBy") .HasColumnType("nvarchar(max)"); b.Property("EmailAddress") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("FirstName") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("LastModified") .HasColumnType("datetimeoffset"); b.Property("LastModifiedBy") .HasColumnType("nvarchar(max)"); b.Property("LastName") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("PhoneNumber") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("ReasonToJoin") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("SocialNetworkAccount") .IsRequired() .HasColumnType("nvarchar(max)"); b.HasKey("Id"); b.ToTable("FutureCreators"); }); modelBuilder.Entity("Hutopy.Domain.Entities.UserTransaction", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("uniqueidentifier"); b.Property("Amount") .HasPrecision(18, 2) .HasColumnType("decimal(18,2)"); b.Property("ApplicationUserId") .IsRequired() .HasColumnType("nvarchar(450)"); b.Property("Created") .HasColumnType("datetimeoffset"); b.Property("CreatedBy") .HasColumnType("nvarchar(max)"); b.Property("Currency") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("IsConfirmed") .HasColumnType("bit"); b.Property("LastModified") .HasColumnType("datetimeoffset"); b.Property("LastModifiedBy") .HasColumnType("nvarchar(max)"); b.Property("Paid") .HasColumnType("bit"); b.Property("StripeBillingDetailEmail") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("StripeBillingDetailName") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("StripeChargeId") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("StripeEventId") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("StripePaymentIntent") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("StripePaymentMethod") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("StripeReceiptUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("TipMessage") .IsRequired() .HasColumnType("nvarchar(max)"); b.HasKey("Id"); b.HasIndex("ApplicationUserId"); b.ToTable("UserTransactions"); }); modelBuilder.Entity("Hutopy.Infrastructure.Identity.ApplicationUser", b => { b.Property("Id") .HasColumnType("nvarchar(450)"); b.Property("About") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("AccessFailedCount") .HasColumnType("int"); b.Property("Address") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("Alias") .HasColumnType("nvarchar(max)"); b.Property("BirthDate") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("City") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("ConcurrencyStamp") .IsConcurrencyToken() .HasColumnType("nvarchar(max)"); b.Property("Country") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("CreatorAlias") .HasColumnType("nvarchar(max)"); b.Property("Description") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("Email") .HasMaxLength(256) .HasColumnType("nvarchar(256)"); b.Property("EmailConfirmed") .HasColumnType("bit"); b.Property("FirstName") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("LastName") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("LockoutEnabled") .HasColumnType("bit"); b.Property("LockoutEnd") .HasColumnType("datetimeoffset"); b.Property("NormalizedEmail") .HasMaxLength(256) .HasColumnType("nvarchar(256)"); b.Property("NormalizedUserName") .HasMaxLength(256) .HasColumnType("nvarchar(256)"); b.Property("Occupation") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("PasswordHash") .HasColumnType("nvarchar(max)"); b.Property("PhoneNumber") .HasColumnType("nvarchar(max)"); b.Property("PhoneNumberConfirmed") .HasColumnType("bit"); b.Property("SecurityStamp") .HasColumnType("nvarchar(max)"); b.Property("TwoFactorEnabled") .HasColumnType("bit"); b.Property("UserName") .HasMaxLength(256) .HasColumnType("nvarchar(256)"); b.HasKey("Id"); b.HasIndex("NormalizedEmail") .HasDatabaseName("EmailIndex"); b.HasIndex("NormalizedUserName") .IsUnique() .HasDatabaseName("UserNameIndex") .HasFilter("[NormalizedUserName] IS NOT NULL"); b.ToTable("AspNetUsers", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => { b.Property("Id") .HasColumnType("nvarchar(450)"); b.Property("ConcurrencyStamp") .IsConcurrencyToken() .HasColumnType("nvarchar(max)"); b.Property("Name") .HasMaxLength(256) .HasColumnType("nvarchar(256)"); b.Property("NormalizedName") .HasMaxLength(256) .HasColumnType("nvarchar(256)"); b.HasKey("Id"); b.HasIndex("NormalizedName") .IsUnique() .HasDatabaseName("RoleNameIndex") .HasFilter("[NormalizedName] IS NOT NULL"); b.ToTable("AspNetRoles", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); b.Property("ClaimType") .HasColumnType("nvarchar(max)"); b.Property("ClaimValue") .HasColumnType("nvarchar(max)"); b.Property("RoleId") .IsRequired() .HasColumnType("nvarchar(450)"); b.HasKey("Id"); b.HasIndex("RoleId"); b.ToTable("AspNetRoleClaims", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); b.Property("ClaimType") .HasColumnType("nvarchar(max)"); b.Property("ClaimValue") .HasColumnType("nvarchar(max)"); b.Property("UserId") .IsRequired() .HasColumnType("nvarchar(450)"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("AspNetUserClaims", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => { b.Property("LoginProvider") .HasColumnType("nvarchar(450)"); b.Property("ProviderKey") .HasColumnType("nvarchar(450)"); b.Property("ProviderDisplayName") .HasColumnType("nvarchar(max)"); b.Property("UserId") .IsRequired() .HasColumnType("nvarchar(450)"); b.HasKey("LoginProvider", "ProviderKey"); b.HasIndex("UserId"); b.ToTable("AspNetUserLogins", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => { b.Property("UserId") .HasColumnType("nvarchar(450)"); b.Property("RoleId") .HasColumnType("nvarchar(450)"); b.HasKey("UserId", "RoleId"); b.HasIndex("RoleId"); b.ToTable("AspNetUserRoles", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => { b.Property("UserId") .HasColumnType("nvarchar(450)"); b.Property("LoginProvider") .HasColumnType("nvarchar(450)"); b.Property("Name") .HasColumnType("nvarchar(450)"); b.Property("Value") .HasColumnType("nvarchar(max)"); b.HasKey("UserId", "LoginProvider", "Name"); b.ToTable("AspNetUserTokens", (string)null); }); modelBuilder.Entity("Hutopy.Domain.Entities.UserTransaction", b => { b.HasOne("Hutopy.Infrastructure.Identity.ApplicationUser", null) .WithMany() .HasForeignKey("ApplicationUserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Hutopy.Infrastructure.Identity.ApplicationUser", b => { b.OwnsOne("Hutopy.Infrastructure.Identity.OwnedEntities.ProfileColors", "ProfileColors", b1 => { b1.Property("ApplicationUserId") .HasColumnType("nvarchar(450)"); b1.Property("Accent") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("BannerBottom") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("BannerTop") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("Menu") .IsRequired() .HasColumnType("nvarchar(max)"); b1.HasKey("ApplicationUserId"); b1.ToTable("ApplicationUser_ProfileColors", (string)null); b1.WithOwner() .HasForeignKey("ApplicationUserId"); }); b.OwnsOne("Hutopy.Infrastructure.Identity.OwnedEntities.SocialNetworks", "SocialNetworks", b1 => { b1.Property("ApplicationUserId") .HasColumnType("nvarchar(450)"); b1.Property("FacebookUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("InstagramUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("LinkedInUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("RedditUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("TikTokUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("XUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("YourWebsiteUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b1.Property("YoutubeUrl") .IsRequired() .HasColumnType("nvarchar(max)"); b1.HasKey("ApplicationUserId"); b1.ToTable("ApplicationUser_SocialNetworks", (string)null); b1.WithOwner() .HasForeignKey("ApplicationUserId"); }); b.OwnsOne("Hutopy.Infrastructure.Identity.OwnedEntities.StoredDataUrls", "StoredDataUrls", b1 => { b1.Property("ApplicationUserId") .HasColumnType("nvarchar(450)"); b1.Property("BannerPictureUrl") .HasMaxLength(255) .HasColumnType("nvarchar(255)"); b1.Property("ProfilePictureUrl") .HasMaxLength(255) .HasColumnType("nvarchar(255)"); b1.Property("WebsiteIconUrl") .HasMaxLength(255) .HasColumnType("nvarchar(255)"); b1.HasKey("ApplicationUserId"); b1.ToTable("ApplicationUser_StoredDataUrls", (string)null); b1.WithOwner() .HasForeignKey("ApplicationUserId"); }); b.Navigation("ProfileColors") .IsRequired(); b.Navigation("SocialNetworks") .IsRequired(); b.Navigation("StoredDataUrls") .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => { b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) .WithMany() .HasForeignKey("RoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => { b.HasOne("Hutopy.Infrastructure.Identity.ApplicationUser", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => { b.HasOne("Hutopy.Infrastructure.Identity.ApplicationUser", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => { b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) .WithMany() .HasForeignKey("RoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Hutopy.Infrastructure.Identity.ApplicationUser", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => { b.HasOne("Hutopy.Infrastructure.Identity.ApplicationUser", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); #pragma warning restore 612, 618 } } }