18 lines
413 B
C#
18 lines
413 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20210311135412)]
|
|
public class KRETA2_7807 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("fnGetOsztalyCsoportTanuloinakTanugyiAdatai", "uspGetTanuloKirStatExport", "uspGetTanulokTanugyiAdatai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|