mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-14 18:54:32 +00:00
13 lines
411 B
C#
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; }
|
|
}
|
|
}
|