// using System; using HN.Infrastructure; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace Infrastructure.Migrations { [DbContext(typeof(HNDbContext))] partial class HNDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "5.0.0"); modelBuilder.Entity("HN.Domain.Comment", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("Content") .IsRequired() .HasColumnType("TEXT"); b.Property("CreatedAt") .HasColumnType("TEXT"); b.Property("LinkId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("LinkId"); b.ToTable("comments"); }); modelBuilder.Entity("HN.Domain.Link", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("CreatedAt") .HasColumnType("TEXT"); b.Property("Url") .IsRequired() .HasMaxLength(500) .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("Url") .IsUnique(); b.ToTable("links"); }); modelBuilder.Entity("HN.Domain.Comment", b => { b.HasOne("HN.Domain.Link", null) .WithMany() .HasForeignKey("LinkId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.OwnsMany("HN.Domain.Vote", "Votes", b1 => { b1.Property("CommentId") .HasColumnType("TEXT"); b1.Property("CreatedAt") .HasColumnType("TEXT"); b1.Property("Type") .HasColumnType("INTEGER"); b1.HasKey("CommentId"); b1.ToTable("comment_votes"); b1.WithOwner() .HasForeignKey("CommentId"); }); b.Navigation("Votes"); }); modelBuilder.Entity("HN.Domain.Link", b => { b.OwnsMany("HN.Domain.Vote", "Votes", b1 => { b1.Property("LinkId") .HasColumnType("TEXT"); b1.Property("CreatedAt") .HasColumnType("TEXT"); b1.Property("Type") .HasColumnType("INTEGER"); b1.HasKey("LinkId"); b1.ToTable("link_votes"); b1.WithOwner() .HasForeignKey("LinkId"); }); b.Navigation("Votes"); }); #pragma warning restore 612, 618 } } }