18 lines
418 B
C#
18 lines
418 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220504153209)]
|
|
public class KRETA2_11777 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspSzirStatNemAllami", "uspGetNemAllamiGrid", "uspGetSzirStatNemAllamiOktKoltsIdFromFeladatEllatasihelyId");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|