// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Tv7Playlist.Data; namespace Tv7Playlist.Data.Migrations { [DbContext(typeof(PlaylistContext))] partial class PlaylistContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "3.1.1"); modelBuilder.Entity("Tv7Playlist.Data.PlaylistEntry", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("ChannelNumberExport") .HasColumnType("INTEGER"); b.Property("ChannelNumberImport") .HasColumnType("INTEGER"); b.Property("Created") .HasColumnType("TEXT"); b.Property("EpgMatchName") .HasColumnType("TEXT"); b.Property("IsAvailable") .HasColumnType("INTEGER"); b.Property("IsEnabled") .HasColumnType("INTEGER"); b.Property("LogoUrl") .HasColumnType("TEXT"); b.Property("Modified") .HasColumnType("TEXT"); b.Property("Name") .HasColumnType("TEXT"); b.Property("Position") .HasColumnType("INTEGER"); b.Property("UrlOriginal") .HasColumnType("TEXT"); b.Property("UrlProxy") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("ChannelNumberImport") .IsUnique(); b.HasIndex("Name"); b.ToTable("PlaylistEntries"); }); #pragma warning restore 612, 618 } } }