18 lines
396 B
C#
18 lines
396 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20210219133600)]
|
|
public class KRETA2_7444 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspGetTantargyData", "uspGetDokumentumErtekelesekIdoszakonkent", "uspGetOsztalyNaplo");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|