fix languages that have multiple codes (#270)
This commit is contained in:
@@ -583,6 +583,32 @@ namespace ErsatzTV.Infrastructure.Migrations
|
||||
b.ToTable("JellyfinPathReplacement");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("ErsatzTV.Core.Domain.LanguageCode", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("EnglishName")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("FrenchName")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("ThreeCode1")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("ThreeCode2")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("TwoCode")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("LanguageCode");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("ErsatzTV.Core.Domain.Library", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
|
||||
Reference in New Issue
Block a user