mirror of
https://dev.azure.com/tstanciu94/Packages/_git/Netmash
synced 2025-06-21 19:22:38 +03:00
- 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)
14 lines
336 B
C#
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; }
|
|
}
|
|
}
|