36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200906132521)]
|
|
public class KRETEA2_5518 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("KRETEA2_5518.sql");
|
|
|
|
RegisterSPFN("fnGetDokumentumIntezmenyCime",
|
|
"sp_AktivTanevValtasa",
|
|
"sp_GetNebuloErtesito",
|
|
"sp_KIRImportTanarok",
|
|
"sp_KIRImportTanulok",
|
|
"sp_TanuloKIRStatAdatokGyorsExport",
|
|
"uspAdattisztitasAlkalmazott",
|
|
"uspCloneTanulo",
|
|
"uspGetAlkalmazottMunkaugyiAdatokData",
|
|
"uspGetErtesitoNyomtatvany",
|
|
"uspGetTanuloKirStatExport",
|
|
"uspGetTanuloszerzodes",
|
|
"uspTanuloKifirImport",
|
|
"uspUpdateIDPEgyediAzonosito",
|
|
"uspUpdateHatarozatstatuszByHibasNebuloAdat"
|
|
);
|
|
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|