30 lines
847 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|