Fix UserData cleanup task and queries (#14280)

This commit is contained in:
JPVenson
2025-06-12 02:30:57 +03:00
committed by GitHub
parent ea34a38f09
commit 1c4c9cf733
4 changed files with 6 additions and 6 deletions

View File

@@ -71,7 +71,7 @@ public class UserData
/// <summary>
/// Gets or Sets the date the referenced <see cref="Item"/> has been deleted.
/// </summary>
public DateTimeOffset? RetentionDate { get; set; }
public DateTime? RetentionDate { get; set; }
/// <summary>
/// Gets or sets the key.

View File

@@ -15,7 +15,7 @@ namespace Jellyfin.Server.Implementations.Migrations
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "9.0.5");
modelBuilder.HasAnnotation("ProductVersion", "9.0.6");
modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.AccessSchedule", b =>
{
@@ -1388,7 +1388,7 @@ namespace Jellyfin.Server.Implementations.Migrations
b.Property<double?>("Rating")
.HasColumnType("REAL");
b.Property<DateTimeOffset?>("RetentionDate")
b.Property<DateTime?>("RetentionDate")
.HasColumnType("TEXT");
b.Property<int?>("SubtitleStreamIndex")