Tudor Stanciu f9bb922c01 Merged PR 35: Migration service can keep its metadata from now in multiple locations: XmlFile or Database (SqlServer or Sqlite)
- Database metadata location
- added migration tables
- MigrationSignaturesService
- MigrationSignaturesService
- Migration service can keep its metadata from now in multiple locations: XmlFile or Database (SqlServer or Sqlite)
2022-02-16 17:09:06 +00:00

14 lines
336 B
C#

using System.Collections.Generic;
namespace NDB.Infrastructure.DatabaseMigration.Entities
{
internal class MigratedVersion
{
public int Id { get; set; }
public int SignatureId { get; set; }
public string Version { get; set; }
public ICollection<MigratedScript> Scripts { get; set; }
}
}