25 lines
606 B
C#
25 lines
606 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190507145654)]
|
|
public class OM_2644 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GetNemMegtartottOrakSzamaByHet.sql",
|
|
"sp_GetNemMegtartottOrakSzamaPerHet.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GetNemMegtartottOrakSzamaByHet",
|
|
"sp_GetNemMegtartottOrakSzamaPerHet"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|