Browse Source

copy paste

pull/2746/head
Jason Dove 7 months ago
parent
commit
bac39f51ad
No known key found for this signature in database
  1. 4
      ErsatzTV.Infrastructure/Data/Configurations/Library/JellyfinLibraryConfiguration.cs

4
ErsatzTV.Infrastructure/Data/Configurations/Library/JellyfinLibraryConfiguration.cs

@ -14,10 +14,10 @@ public class JellyfinLibraryConfiguration : IEntityTypeConfiguration<JellyfinLib @@ -14,10 +14,10 @@ public class JellyfinLibraryConfiguration : IEntityTypeConfiguration<JellyfinLib
.WithOne()
.OnDelete(DeleteBehavior.Cascade);
builder.Property(e => e.ItemId)
builder.Property(l => l.ItemId)
.HasMaxLength(36)
.IsUnicode(false);
builder.HasIndex(e => e.ItemId);
builder.HasIndex(l => l.ItemId);
}
}

Loading…
Cancel
Save