This commit is contained in:
2020-06-11 19:52:47 +00:00
parent 1c2f1c2c42
commit a98dfbc08d
5 changed files with 63 additions and 44 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace AyaNova.Models
{
/// <summary>
/// AyaNova Schema version table
/// </summary>
public class SchemaVersion
{
[Required]
[Key]
public Guid Id { get; set; }
public int Schema { get; set; }
//ef core requires this
public SchemaVersion() { }
}//eoc
}//eons