18 lines
427 B
C#
18 lines
427 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200916092209)]
|
|
public class KRETA2_4894 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspGetDokumentumErtekelesekIdoszakonkent", "uspGetOsztalyNaplo", "uspGetCsoportNaplo", "uspGetUzenofuzetErtekelolap");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|