18 lines
444 B
C#
18 lines
444 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20211126085511)]
|
|
public class KRETA2_10571 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("fnGetOsztalyCsoportTanuloinakTanugyiAdatai", "uspTanuloKereses", "uspGetGondviselokElerhetosegeiExport", "uspGetTanuloKirStatExport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|