20 lines
624 B
C#
20 lines
624 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20210917133616)]
|
|
public class KRETA2_9888 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetHelyettesitesekAjanlasa.sql", "uspGetNemMegtartottOrakSzamaByHet.sql");
|
|
RegisterSPFN("uspGetHelyettesitesekAjanlasa", "uspGetTanarokByOktNevKategoria", "uspGetNemMegtartottOrakSzamaByHet");
|
|
DeleteStoredProcedures("sp_GetHelyettesitesekAjanlasa", "sp_GetNemMegtartottOrakSzamaByHet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|