kreta/Kreta.DataAccess.Migrations/Migrations/Archive/20180719141518_OM_1089.cs
2024-03-13 00:33:46 +01:00

30 lines
847 B
C#

using FluentMigrator;
namespace Kreta.DataAccess.Migrations.Migrations
{
[Migration(20180719141518)]
public class OM_1089 : CustomMigration
{
public override void Up()
{
ExecuteScripts(
"sp_GetOrarend.sql"
, "sp_GetNemKotottMunkaIdoDateByInsert.sql"
, "sp_SetAktivCsengetesiRend.sql"
, "sp_GetNemKotottMunkaIdoIdByDelete.sql"
, "sp_GetNemKotottMunkaIdoAdmin.sql");
CreateSchemaStoredProcedures(
"sp_GetOrarend"
, "sp_GetNemKotottMunkaIdoDateByInsert"
, "sp_SetAktivCsengetesiRend"
, "sp_GetNemKotottMunkaIdoIdByDelete"
, "sp_GetNemKotottMunkaIdoAdmin");
}
public override void Down()
{
}
}
}