22 lines
584 B
C#
22 lines
584 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220928131731)]
|
|
public class KRETA2_11989 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("fnGetOsztalyCsoportTanuloOsztalyList"
|
|
,"uspGetOsztalyIdByCsoportIdAndDatum"
|
|
,"uspGetTanuloErtekelesDataSetByMagatartasSzorgalom"
|
|
,"uspGetTanuloErtekelesDataSetByTantargy"
|
|
,"uspGetTanuloErtekelesDetailDataSet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|