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