23 lines
513 B
C#
23 lines
513 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220512115113)]
|
|
public class DB_4593 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DB_4593.sql");
|
|
RegisterSPFN(
|
|
"uspGetNemNaplozottOrakSzama",
|
|
"uspGetNemNaplozottOrarendiOrak",
|
|
"uspGetNemNaplozottOrarendiOrak_Core"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|