This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
411 B
C#

namespace Oqtane.Models
{
public class MigrationHistoryTable
{
public string TableName { get; set; }
public string TableSchema { get; set; }
public string MigrationIdColumnName { get; set; }
public string ProductVersionColumnName { get; set; }
public string AppliedVersionColumnName { get; set; }
public string AppliedDateColumnName { get; set; }
}
}