27 lines
693 B
C#
27 lines
693 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20210114115723)]
|
|
public class KRETA2_6858 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN(
|
|
"fnGetDokumentumTanuloOrGondviseloCim",
|
|
"sp_Check4TValidation",
|
|
"sp_CsoportKisorolasok",
|
|
"sp_GetDokumentumTanitasiNapokSorszama",
|
|
"sp_GetNebuloErtesito",
|
|
"uspGetFaliujsagBejegyzesekData",
|
|
"uspGetHazifeladatCsatolmanyData",
|
|
"uspOratervImport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|