myhn/Infrastructure/Migrations/20210105102252_AddLinkVote.Designer.cs
2021-01-08 16:26:19 +01:00

73 lines
2.2 KiB
C#

// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using MyHN.Infrastructure;
namespace Infrastructure.Migrations
{
[DbContext(typeof(MyHNDbContext))]
[Migration("20210105102252_AddLinkVote")]
partial class AddLinkVote
{
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "5.0.1");
modelBuilder.Entity("MyHN.Domain.Link", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("TEXT");
b.Property<DateTime>("CreatedAt")
.HasColumnType("TEXT");
b.Property<string>("Url")
.IsRequired()
.HasMaxLength(500)
.HasColumnType("TEXT");
b.HasKey("Id");
b.ToTable("links");
});
modelBuilder.Entity("MyHN.Domain.Link", b =>
{
b.OwnsMany("MyHN.Domain.Vote", "Votes", b1 =>
{
b1.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("TEXT");
b1.Property<DateTime>("CreatedAt")
.HasColumnType("TEXT");
b1.Property<int>("Direction")
.HasColumnType("INTEGER");
b1.Property<Guid>("LinkId")
.HasColumnType("TEXT");
b1.HasKey("Id");
b1.HasIndex("LinkId");
b1.ToTable("link_votes");
b1.WithOwner()
.HasForeignKey("LinkId");
});
b.Navigation("Votes");
});
#pragma warning restore 612, 618
}
}
}