mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 15:48:03 +00:00
Fix UserData cleanup task and queries (#14280)
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user