2023-01-12 01:01:36 +02:00
|
|
|
|
namespace Netmash.Infrastructure.DatabaseMigration.Constants
|
2022-02-16 19:09:06 +02:00
|
|
|
|
{
|
|
|
|
|
internal struct ManifestResourcesPath
|
|
|
|
|
{
|
|
|
|
|
public const string
|
2023-01-12 01:07:04 +02:00
|
|
|
|
SqlServer = "Netmash.Infrastructure.DatabaseMigration.Scripts.SqlServer.",
|
|
|
|
|
Sqlite = "Netmash.Infrastructure.DatabaseMigration.Scripts.Sqlite.";
|
2022-02-16 19:09:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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" };
|
|
|
|
|
}
|
|
|
|
|
}
|