Updated DB Schema and added new initial create
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user