add ability to view Migration History

This commit is contained in:
sbwalker
2025-09-19 14:59:58 -04:00
parent 05b37080c1
commit beb4919d97
9 changed files with 346 additions and 204 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Oqtane.Models
{
[Table("__EFMigrationsHistory")]
[Keyless]
public class MigrationHistory
{
public string MigrationId { get; set; }
public string ProductVersion { get; set; }
public DateTime AppliedDate { get; set; }
public string AppliedVersion { get; set; }
}
}