mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 20:42:53 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
16 lines
495 B
C#
16 lines
495 B
C#
using System;
|
|
using Kavita.Common.EnvironmentInfo;
|
|
|
|
namespace Kavita.Models.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;
|
|
}
|