17 lines
429 B
C#
17 lines
429 B
C#
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; }
|
|
}
|
|
}
|