// using System; using HN.Infrastructure; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace Infrastructure.Migrations { [DbContext(typeof(HNDbContext))] [Migration("20201210171100_CreateComment")] partial class CreateComment { protected override void BuildTargetModel(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.Vote", b => { b.Property("LinkId") .HasColumnType("TEXT"); b.Property("CreatedAt") .HasColumnType("TEXT"); b.Property("Type") .HasColumnType("INTEGER"); b.HasKey("LinkId"); b.ToTable("link_votes"); }); modelBuilder.Entity("HN.Domain.Comment", b => { b.HasOne("HN.Domain.Link", null) .WithMany() .HasForeignKey("LinkId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("HN.Domain.Vote", b => { b.HasOne("HN.Domain.Link", null) .WithMany("Votes") .HasForeignKey("LinkId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("HN.Domain.Link", b => { b.Navigation("Votes"); }); #pragma warning restore 612, 618 } } }