29 lines
682 B
C#
29 lines
682 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220511153311)]
|
|
public class DB_4614 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN(
|
|
"fnGetNapirendUtkozesByTanar"
|
|
, "sp_AktivTanevValtasa"
|
|
, "uspCopyOrarendiElem"
|
|
, "uspGetNemKotottMunkaIdo"
|
|
, "uspInsertEgyediNap"
|
|
);
|
|
|
|
ExecuteScripts(
|
|
"01_Generated.sql"
|
|
, "02_Restore.sql"
|
|
, "03_uspIntezmenyRemoveDelete.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|