19 lines
811 B
C#
19 lines
811 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180613161237)]
|
|
public class OM_903 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOrarend.sql", "sp_CheckTanarOra.sql", "sp_GetHazifeladatOrarend.sql", "sp_GetNemMegtartottOrakSzamaByHet.sql", "sp_GetNemMegtartottOrakSzamaPerHet.sql", "sp_GetNemNaplozottOrarendiOrak.sql", "uspGetOsztalycsoportTantargyiMulasztasai.sql");
|
|
CreateSchemaStoredProcedures("sp_GetOrarend", "sp_CheckTanarOra", "sp_GetHazifeladatOrarend", "sp_GetNemMegtartottOrakSzamaByHet", "sp_GetNemMegtartottOrakSzamaPerHet", "sp_GetNemNaplozottOrarendiOrak", "uspGetOsztalycsoportTantargyiMulasztasai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|