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