22 lines
1 KiB
C#
22 lines
1 KiB
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190319112710)]
|
|
public class OM_1370 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOrarend.sql", "sp_GetHelyettesitesekAjanlasa.sql");
|
|
CreateSchemaStoredProcedures("sp_GetOrarend", "sp_GetHelyettesitesekAjanlasa");
|
|
|
|
ExecuteScripts("sp_CheckTanarOra.sql", "sp_GetNemMegtartottOrakSzamaByHet.sql", "sp_GetNemMegtartottOrakSzamaPerHet.sql", "sp_GetNemNaplozottOrarendiOrak.sql", "sp_HelyettesitesekKeresese.sql", "uspGetNyomtatvanyokOrarendOsszes.sql", "uspGetOsztalycsoportTantargyiMulasztasai.sql");
|
|
CreateSchemaStoredProcedures("sp_CheckTanarOra", "sp_GetNemMegtartottOrakSzamaByHet", "sp_GetNemMegtartottOrakSzamaPerHet", "sp_GetNemNaplozottOrarendiOrak", "sp_HelyettesitesekKeresese", "uspGetNyomtatvanyokOrarendOsszes", "uspGetOsztalycsoportTantargyiMulasztasai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|