Updated DB Schema and added new initial create

This commit is contained in:
2019-01-30 22:49:01 +01:00
parent 273b960979
commit 15e2a650b9
14 changed files with 188 additions and 84 deletions

View File

@@ -21,31 +21,37 @@ namespace Tv7Playlist.Data.Migrations
b.Property<Guid>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("ChannelNumberExport");
b.Property<int>("ChannelNumberImport");
b.Property<DateTime>("Created");
b.Property<string>("EpgMatchName");
b.Property<bool>("IsAvailable");
b.Property<bool>("IsEnabled");
b.Property<string>("Name");
b.Property<string>("LogoUrl");
b.Property<string>("NameOverride");
b.Property<DateTime>("Modified");
b.Property<string>("Name");
b.Property<int>("Position");
b.Property<int>("TrackNumber");
b.Property<int>("TrackNumberOverride");
b.Property<string>("Url");
b.Property<string>("UrlOriginal");
b.Property<string>("UrlProxy");
b.HasKey("Id");
b.HasIndex("Name");
b.HasIndex("TrackNumber")
b.HasIndex("ChannelNumberImport")
.IsUnique();
b.HasIndex("Name");
b.ToTable("PlaylistEntries");
});
#pragma warning restore 612, 618