kreta/Kreta.DataAccess.Migrations/Migrations/Archive/20200108140125_KRETA2_2341.cs
2024-03-13 00:33:46 +01:00

27 lines
684 B
C#

using FluentMigrator;
namespace Kreta.DataAccess.Migrations.Migrations
{
[Migration(20200108140125)]
public class KRETA2_2341 : CustomMigration
{
public override void Up()
{
ExecuteScripts(
"uspGetNemNaplozottOrarendiOrak_Core.sql",
"uspGetNemNaplozottOrarendiOrak.sql",
"uspGetNemNaplozottOrakSzama.sql"
);
CreateSchemaSPFN(
"uspGetNemNaplozottOrarendiOrak_Core",
"uspGetNemNaplozottOrarendiOrak",
"uspGetNemNaplozottOrakSzama"
);
}
public override void Down()
{
}
}
}