netmash/infrastructure/NDB.Infrastructure.Database.../Constants/ManifestResources.cs

17 lines
620 B
C#
Raw Normal View History

namespace NDB.Infrastructure.DatabaseMigration.Constants
{
internal struct ManifestResourcesPath
{
public const string
SqlServer = "NDB.Infrastructure.DatabaseMigration.Scripts.SqlServer.",
Sqlite = "NDB.Infrastructure.DatabaseMigration.Scripts.Sqlite.";
}
internal struct ManifestResources
{
public static string[]
SqlServer = new string[] { "01.CreateMigrationSchema.sql", "02.MigrationTables.sql" },
Sqlite = new string[] { "01.MigrationSignatureTable.sql", "02.MigratedVersionTable.sql", "03.MigratedScriptTable.sql" };
}
}