22 lines
491 B
C#
22 lines
491 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200512101019)]
|
|
public class KRETA2_200 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN(
|
|
"fnGetDokumentumKozossegiSzolgalatOsztalyonkent",
|
|
"uspGetErtesitoNyomtatvany",
|
|
"uspGetTorzslap",
|
|
"uspGetOsztalyNaplo");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|