mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-19 02:15:54 -05:00
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
16 lines
485 B
C#
16 lines
485 B
C#
using System;
|
|
using Kavita.Common.EnvironmentInfo;
|
|
|
|
namespace API.Entities.History;
|
|
|
|
/// <summary>
|
|
/// This will track manual migrations so that I can use simple selects to check if a Manual Migration is needed
|
|
/// </summary>
|
|
public class ManualMigrationHistory
|
|
{
|
|
public int Id { get; set; }
|
|
public required string Name { get; set; }
|
|
public string ProductVersion { get; set; } = BuildInfo.Version.ToString();
|
|
public DateTime RanAt { get; set; } = DateTime.UtcNow;
|
|
}
|