21 lines
579 B
C#
21 lines
579 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180113165633)]
|
|
public class KRETA_4739 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetNemMegtartottOrakSzamaByHet.sql");
|
|
CreateSchemaStoredProcedures("sp_GetNemMegtartottOrakSzamaByHet");
|
|
ExecuteScripts("sp_GetNemMegtartottOrakSzamaPerHet.sql");
|
|
CreateSchemaStoredProcedures("sp_GetNemMegtartottOrakSzamaPerHet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|