init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,22 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200302120509)]
|
||||
public class KRETA2_2569 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"uspTanuloKifirImport.sql"
|
||||
);
|
||||
CreateSchemaSPFN(
|
||||
"uspTanuloKifirImport"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200302120610)]
|
||||
public class KRETA2_3135 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetOsztalyNaplo.sql");
|
||||
CreateSchemaSPFN("uspGetOsztalyNaplo");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200302160325)]
|
||||
public class DB_2113 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetSzamonkeresElorejelzesGrid.sql", "uspGetSzamonkeresElorejelzesekByDateRange.sql");
|
||||
CreateSchemaSPFN("uspGetSzamonkeresElorejelzesGrid", "uspGetSzamonkeresElorejelzesekByDateRange");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200303104519)]
|
||||
public class KRETA2_3188 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetAllSchemaKikuldendoErtekeles.sql");
|
||||
CreateSchemaSPFN("uspGetAllSchemaKikuldendoErtekeles");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200303110713)]
|
||||
public class KRETA2_3093 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"sp_GetTanulokMulasztasaiKesesei.sql"
|
||||
);
|
||||
|
||||
CreateSchemaSPFN(
|
||||
"sp_GetTanulokMulasztasaiKesesei"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200303155922)]
|
||||
public class DB_2116 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGenerateTanevAdatokFromExistingTanev.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200303162912)]
|
||||
public class DB_2105 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DB_2105.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200303163343)]
|
||||
public class KRETA2_3040 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetTanuloErtekelesListDataSet.sql");
|
||||
CreateSchemaStoredProcedures("uspGetTanuloErtekelesListDataSet");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200304090243)]
|
||||
public class KRETA2_3136 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetDokumentumMulasztasokIdoszakonkent.sql");
|
||||
CreateSchemaSPFN("sp_GetDokumentumMulasztasokIdoszakonkent");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200304113656)]
|
||||
public class KRETA2_3112 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
|
||||
ExecuteScripts("uspCreateDictionaryItems.sql");
|
||||
ExecuteScripts("KRETA2_3112_UpdateScripts.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,88 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200304134948)]
|
||||
public class DB_2122 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"fnGetFollowUpColumnMapping.sql",
|
||||
"uspFollowUpTanterv.sql",
|
||||
"uspFollowUpEszkoz.sql",
|
||||
"uspFollowUpMukodesiHely.sql",
|
||||
"uspFollowUpDictionaryItemBase.sql",
|
||||
"uspFollowUpTantargy.sql",
|
||||
"uspFollowUpIntezmenyAdatok.sql",
|
||||
"uspFollowUpCsengetesiRend.sql",
|
||||
"uspFollowUpFeladatellatasiHely.sql",
|
||||
"uspFollowUpTerem.sql",
|
||||
"uspFollowUpCsengetesiRendOra.sql",
|
||||
"uspFollowUpOraterv.sql",
|
||||
"uspFollowUpOratervTargy.sql",
|
||||
"uspFollowUpFelhasznaloTelefon.sql",
|
||||
"uspFollowUpFelhasznaloCim.sql",
|
||||
"uspFollowUpFelhasznaloEmail.sql",
|
||||
"uspFollowUpAlkalmazott.sql",
|
||||
"uspFollowUpAlkalmazottVegzettseg.sql",
|
||||
"uspFollowUpAlkalmazottPEP.sql",
|
||||
"uspFollowUpAlkalmazottTovabbiMunkaugy.sql",
|
||||
"uspFollowUpAlkalmazottVegzettsegKK.sql",
|
||||
"uspFollowUpGondviseloCim.sql",
|
||||
"uspFollowUpGondviselo.sql",
|
||||
"uspFollowUpTanuloFelmentes.sql",
|
||||
"uspFollowUpTanulo.sql");
|
||||
CreateSchemaSPFN(
|
||||
"fnGetFollowUpColumnMapping",
|
||||
"uspFollowUpTanterv",
|
||||
"uspFollowUpEszkoz",
|
||||
"uspFollowUpMukodesiHely",
|
||||
"uspFollowUpDictionaryItemBase",
|
||||
"uspFollowUpTantargy",
|
||||
"uspFollowUpIntezmenyAdatok",
|
||||
"uspFollowUpCsengetesiRend",
|
||||
"uspFollowUpFeladatellatasiHely",
|
||||
"uspFollowUpTerem",
|
||||
"uspFollowUpCsengetesiRendOra",
|
||||
"uspFollowUpOraterv",
|
||||
"uspFollowUpOratervTargy",
|
||||
"uspFollowUpFelhasznaloTelefon",
|
||||
"uspFollowUpFelhasznaloCim",
|
||||
"uspFollowUpFelhasznaloEmail",
|
||||
"uspFollowUpAlkalmazott",
|
||||
"uspFollowUpAlkalmazottVegzettseg",
|
||||
"uspFollowUpAlkalmazottPEP",
|
||||
"uspFollowUpAlkalmazottTovabbiMunkaugy",
|
||||
"uspFollowUpAlkalmazottVegzettsegKK",
|
||||
"uspFollowUpGondviseloCim",
|
||||
"uspFollowUpGondviselo",
|
||||
"uspFollowUpTanuloFelmentes",
|
||||
"uspFollowUpTanulo");
|
||||
DeleteStoredProcedures(
|
||||
"sp_FollowUpTanterv",
|
||||
"sp_FollowUpEszkoz",
|
||||
"sp_FollowUpMukodesiHely",
|
||||
"sp_FollowUpDictionaryItemBase",
|
||||
"sp_FollowUpTantargy",
|
||||
"sp_FollowUpIntezmenyAdatok",
|
||||
"sp_FollowUpCsengetesiRend",
|
||||
"sp_FollowUpFeladatellatasiHely",
|
||||
"sp_FollowUpTerem",
|
||||
"sp_FollowUpCsengetesiRendOra",
|
||||
"sp_FollowUpOraterv",
|
||||
"sp_FollowUpAlkalmazott",
|
||||
"sp_FollowUpAlkalmazottVegzettseg",
|
||||
"sp_FollowUpAlkalmazottPEP",
|
||||
"sp_FollowUpAlkalmazottTovabbiMunkaugy",
|
||||
"sp_FollowUpAlkalmazottVegzettsegKK",
|
||||
"sp_FollowUpTanuloFelmentes",
|
||||
"sp_FollowUpTanulo");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200304142042)]
|
||||
public class KRETA2_3161 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspUpdateCsengetesiRend.sql");
|
||||
CreateSchemaSPFN("uspUpdateCsengetesiRend");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200304142449)]
|
||||
public class DB_2105_FX : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_Global_GenerateAsyncAuditTriggerAll.sql", "DB_2105_FX.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200304160213)]
|
||||
public class DropFenntartoUserRe : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DropFenntartoUserRe.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200304171029)]
|
||||
public class DB_2128 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DB_2128.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200305105101)]
|
||||
public class KRETA2_2811 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateDictionaryItems.sql");
|
||||
ExecuteScripts("KRETA2_2811_InsertScripts.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200305114052)]
|
||||
public class KRETA2_3281 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika.sql");
|
||||
CreateSchemaSPFN("sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200305121240)]
|
||||
public class DB_2131 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("fnGetEvesOraszamLista.sql");
|
||||
CreateSchemaSPFN("fnGetEvesOraszamLista");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200305143540)]
|
||||
public class KRETA2_3127 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("fnGetDokumentumErtekelesekOsztalyonkent.sql", "uspGetCsoportNaplo.sql", "uspGetDokumentumErtekelesekIdoszakonkent.sql", "uspGetOsztalyNaplo.sql", "uspGetUzenofuzetErtekelolap.sql");
|
||||
CreateSchemaSPFN("fnGetDokumentumErtekelesekOsztalyonkent", "uspGetCsoportNaplo", "uspGetDokumentumErtekelesekIdoszakonkent", "uspGetOsztalyNaplo", "uspGetUzenofuzetErtekelolap");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200305172847)]
|
||||
public class KRETA2_3104 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspTantargyfelosztasImport.sql");
|
||||
CreateSchemaSPFN("uspTantargyfelosztasImport");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200306104027)]
|
||||
public class KRETA2_3285 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetEUgyintezokEsOsztalyfonokokEsHelyettesek.sql");
|
||||
CreateSchemaSPFN("uspGetEUgyintezokEsOsztalyfonokokEsHelyettesek");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200306110200)]
|
||||
public class KRETA2_3031 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetTanarokByOktNevKategoria.sql");
|
||||
CreateSchemaSPFN("uspGetTanarokByOktNevKategoria");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200306115055)]
|
||||
public class KRETA2_3274 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetTanuloErtekelesListDataSet.sql");
|
||||
CreateSchemaSPFN("uspGetTanuloErtekelesListDataSet");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200306144845)]
|
||||
public class KRETA2_3129 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetDokumentumTantargyakErtekeleshez.sql");
|
||||
CreateSchemaSPFN("uspGetDokumentumTantargyakErtekeleshez");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200306164227)]
|
||||
public class DB_1177 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetEntitasAktivKapcsolatai.sql");
|
||||
CreateSchemaSPFN("sp_GetEntitasAktivKapcsolatai");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200309123513)]
|
||||
public class KRETA2_3125 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetMunkaidoElszamoloLap.sql");
|
||||
CreateSchemaSPFN("uspGetMunkaidoElszamoloLap");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200309141043)]
|
||||
public class DB_2146 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"uspGenerateNemKivalaszthatoTanev.sql",
|
||||
"DB_2146.sql",
|
||||
"uspGenerateTanevAdatokFromExistingTanev.sql",
|
||||
"uspCreateTanevRendje.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200310105501)]
|
||||
public class DB_2120 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCloneIntezmeny.sql", "uspCloneIntezmenyMigrationList.sql", "uspCloneIntezmenyMigration.sql", "uspCloneIntezmenyList.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200310182001)]
|
||||
public class KRETA2_3315 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetTanuloKirStatExport.sql");
|
||||
CreateSchemaSPFN("uspGetTanuloKirStatExport");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200311090223)]
|
||||
public class KRETA2_3354 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("KRETA2_3354.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200311112511)]
|
||||
public class KRETA2_3379 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetDokumentumErtekelesek.sql", "uspGetErtesitoNyomtatvany.sql", "uspGetTorzslap.sql");
|
||||
CreateSchemaSPFN("uspGetDokumentumErtekelesek", "uspGetErtesitoNyomtatvany", "uspGetTorzslap");
|
||||
DeleteStoredProcedures("sp_GetDokumentumErtekelesek");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200312010105)]
|
||||
public class KRETA2_3424 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetAllSchemaKikuldendoRendszeruzenet.sql");
|
||||
CreateSchemaSPFN("uspGetAllSchemaKikuldendoRendszeruzenet");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200313104703)]
|
||||
public class KRETA2_3157 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetNyomtatvanyokOrarendOsszes.sql");
|
||||
CreateSchemaSPFN("uspGetNyomtatvanyokOrarendOsszes");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200313132738)]
|
||||
public class KRETA2_3401 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetTanuloszerzodes.sql");
|
||||
CreateSchemaSPFN("uspGetTanuloszerzodes");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200313143646)]
|
||||
public class DB_2158 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateSchemaViews.sql", "DB_2158.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200315192842)]
|
||||
public class DB_2162 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DB_2162.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200315200139)]
|
||||
public class DB_2162_2 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"sp_Global_CreateSchemaStoredProcedures.sql",
|
||||
"Torolt_Schemak.sql",
|
||||
"sp_GetFaliujsagBejegyzesek.sql"
|
||||
);
|
||||
CreateSchemaSPFN(
|
||||
"sp_GetFaliujsagBejegyzesek"
|
||||
);
|
||||
|
||||
ExecuteScripts(
|
||||
"KoronavirusTajekoztatoUpdate.sql",
|
||||
"DigitalisMunkarendTajekoztatoUpdate.sql"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200316133541)]
|
||||
public class KRETA2_3392 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetHaladasiNaploAdatok.sql");
|
||||
CreateSchemaSPFN("uspGetHaladasiNaploAdatok");
|
||||
DeleteStoredProcedures("sp_GetHaladasiNaploAdatok");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200316144452)]
|
||||
public class DB_2157 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DB_2157.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200316145709)]
|
||||
public class KRETA2_3476 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"uspGetHaziFeladatokByDateRange.sql"
|
||||
);
|
||||
CreateSchemaSPFN(
|
||||
"uspGetHaziFeladatokByDateRange"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200316145835)]
|
||||
public class KRETA2_3159 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateDictionaryItems.sql");
|
||||
|
||||
ExecuteScripts("KRETA2_3159_UpdateScripts.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200317140914)]
|
||||
public class KRETA2_3490 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetOsztalyNaplo.sql");
|
||||
CreateSchemaSPFN("uspGetOsztalyNaplo");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200317143829)]
|
||||
public class DB_2169 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("AddIndex.sql", "uspGetHaziFeladatokByDateRange.sql");
|
||||
CreateSchemaSPFN("uspGetHaziFeladatokByDateRange");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200318071239)]
|
||||
public class DB_2171 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetSzamonkeresElorejelzesekByDateRange.sql");
|
||||
CreateSchemaSPFN("uspGetSzamonkeresElorejelzesekByDateRange");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200318103141)]
|
||||
public class KRETA2_3209 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateDictionaryItems.sql");
|
||||
ExecuteScripts("KRETA2_3209.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200318115242)]
|
||||
public class KRETA2_3442 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetOrarend.sql", "sp_CheckTanarOra.sql", "sp_GetDokumentumHelyettesitesekByDateInterval.sql", "sp_GetHazifeladatOrarend.sql", "sp_GetHelyettesitesekAjanlasa.sql",
|
||||
"sp_GetNemMegtartottOrakSzamaByHet.sql", "sp_HelyettesitesekKeresese.sql", "uspGetKiirtHelyettesitesek.sql", "uspGetNemNaplozottOrarendiOrak_Core.sql", "uspGetNyomtatvanyokOrarendOsszes.sql",
|
||||
"uspGetOsztalycsoportTantargyiMulasztasai.sql", "uspGetUtolsoBeNemIrtOrak.sql");
|
||||
CreateSchemaSPFN("sp_GetOrarend", "sp_CheckTanarOra", "sp_GetDokumentumHelyettesitesekByDateInterval", "sp_GetHazifeladatOrarend", "sp_GetHelyettesitesekAjanlasa", "sp_GetNemMegtartottOrakSzamaByHet",
|
||||
"sp_HelyettesitesekKeresese", "uspGetKiirtHelyettesitesek", "uspGetNemNaplozottOrarendiOrak_Core", "uspGetNyomtatvanyokOrarendOsszes", "uspGetOsztalycsoportTantargyiMulasztasai", "uspGetUtolsoBeNemIrtOrak");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200318125029)]
|
||||
public class KRETA2_3326 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspIsTanuloErtekelt.sql");
|
||||
CreateSchemaSPFN("uspIsTanuloErtekelt");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200318143203)]
|
||||
public class KRETA2_3419 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetNemMegtartottOrakSzamaByHet.sql");
|
||||
CreateSchemaSPFN("sp_GetNemMegtartottOrakSzamaByHet");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200319104925)]
|
||||
public class DB_2035 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateSchemaViews.sql", "DB_2035.sql", "uspGenerateOrarend.sql", "DB_2035_2.sql");
|
||||
CreateSchemaSPFN("uspGenerateOrarend");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200319122353)]
|
||||
public class KRETA2_2732 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetOsztalyNaplo.sql");
|
||||
CreateSchemaSPFN("uspGetOsztalyNaplo");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200319133544)]
|
||||
public class KRETA2_2787 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateDictionaryItems.sql", "sp_Global_SetSystemSettingsDefaultData.sql");
|
||||
ExecuteScripts("KRETA2_2787_InsertScripts.sql");
|
||||
ExecuteScripts("rendszerbeallitas_frissites.sql");
|
||||
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200319155144)]
|
||||
public class KRETA2_3463 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_CheckTanarOra.sql");
|
||||
CreateSchemaSPFN("sp_CheckTanarOra");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200319165042)]
|
||||
public class DB_2186 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DB_2186.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200320100037)]
|
||||
public class KRETA2_3574 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("UtolsoTanitasiNapnalKesobbiOraervenyesseguOrarendiOrakOraervenyesseg20200616DatumraAllitasUpdate.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200320134746)]
|
||||
public class KRETA2_3248 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika.sql");
|
||||
CreateSchemaSPFN("sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200320150447)]
|
||||
public class KRETA2_3592 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("fnGetDokumentumTanulokFeljegyzesei.sql");
|
||||
CreateSchemaSPFN("fnGetDokumentumTanulokFeljegyzesei");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200320152301)]
|
||||
public class KRETA2_3615 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetNaplozasMulasztasList.sql");
|
||||
CreateSchemaSPFN("sp_GetNaplozasMulasztasList");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200320155704)]
|
||||
public class KRETA2_2732_fix : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetOsztalyNaplo.sql");
|
||||
CreateSchemaSPFN("uspGetOsztalyNaplo");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200322090642)]
|
||||
public class KRETA2_3471 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetFaliujsagBejegyzesek.sql");
|
||||
CreateSchemaSPFN("sp_GetFaliujsagBejegyzesek");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200323114106)]
|
||||
public class KRETA2_3352 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetPedagogusAltalAdottErtekelesek.sql");
|
||||
CreateSchemaSPFN("uspGetPedagogusAltalAdottErtekelesek");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200323120606)]
|
||||
public class KRETA2_3421 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateDictionaryItems.sql");
|
||||
|
||||
ExecuteScripts("KRETA2_3421_UpdateScripts.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200323120903)]
|
||||
public class KRETA2_3442_sqlfix : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetNyomtatvanyokOrarendOsszes.sql");
|
||||
CreateSchemaSPFN("uspGetNyomtatvanyokOrarendOsszes");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200323135911)]
|
||||
public class KRETA2_3379_2 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetTorzslap.sql");
|
||||
CreateSchemaSPFN("uspGetTorzslap");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200323144637)]
|
||||
public class KRETA2_3633 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetNaplozasMulasztasList.sql");
|
||||
CreateSchemaSPFN("sp_GetNaplozasMulasztasList");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200324093005)]
|
||||
public class KRETA2_3398 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("fnGetDokumentumKapcsolodoOsztalycsoportok.sql");
|
||||
CreateSchemaSPFN("fnGetDokumentumKapcsolodoOsztalycsoportok");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200324103232)]
|
||||
public class KRETA2_2542 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"fnGetDokumentumTanuloOrGondviseloCim.sql"
|
||||
, "sp_GetIktSzandeknyilatkozatAdatok.sql"
|
||||
, "sp_GetNebuloErtesito.sql"
|
||||
, "sp_GetTanuloiGondviseloAdatok.sql"
|
||||
, "sp_KIRImportTanulok.sql"
|
||||
, "uspAdattisztitasAlkalmazott.sql"
|
||||
, "uspGetGondviselokElerhetosegeiExport.sql"
|
||||
, "uspGetTanuloiAlapadatok.sql"
|
||||
, "uspTanuloKifirImport.sql"
|
||||
, "uspGenerateTanevAdatokFromExistingTanev.sql"
|
||||
, "KRETA2_2542.sql"
|
||||
);
|
||||
CreateSchemaSPFN(
|
||||
"fnGetDokumentumTanuloOrGondviseloCim"
|
||||
, "sp_GetIktSzandeknyilatkozatAdatok"
|
||||
, "sp_GetNebuloErtesito"
|
||||
, "sp_GetTanuloiGondviseloAdatok"
|
||||
, "sp_KIRImportTanulok"
|
||||
, "uspAdattisztitasAlkalmazott"
|
||||
, "uspGetGondviselokElerhetosegeiExport"
|
||||
, "uspGetTanuloiAlapadatok"
|
||||
, "uspTanuloKifirImport"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200324105912)]
|
||||
public class KRETA2_3664 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetNemMegtartottOrakSzamaPerHet.sql");
|
||||
CreateSchemaSPFN("sp_GetNemMegtartottOrakSzamaPerHet");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200324120558)]
|
||||
public class KRETA2_3633_2 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetNaplozasMulasztasList.sql");
|
||||
CreateSchemaSPFN("sp_GetNaplozasMulasztasList");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200324171605)]
|
||||
public class DB_2237 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DB_2237.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200325094133)]
|
||||
public class KRETA2_3669 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("fnGetDokumentumTanulokAdatai.sql");
|
||||
CreateSchemaSPFN("fnGetDokumentumTanulokAdatai");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200325104017)]
|
||||
public class KRETA2_3648 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspInsertTanuloHazifeladatStatusz.sql");
|
||||
CreateSchemaSPFN("uspInsertTanuloHazifeladatStatusz");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200325120405)]
|
||||
public class KRETA2_3664_1 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetNemMegtartottOrakSzamaByHet.sql");
|
||||
CreateSchemaSPFN("sp_GetNemMegtartottOrakSzamaByHet");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200325123025)]
|
||||
public class KRETA2_3634 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateDictionaryItems.sql", "sp_Global_SetSystemSettingsDefaultData.sql");
|
||||
ExecuteScripts("KRETA2_3634_InsertScripts.sql");
|
||||
ExecuteScripts("rendszerbeallitas_frissites.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200326104900)]
|
||||
public class KRETA2_3368 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetTanulokSzamonkeresElorejelzesei.sql");
|
||||
CreateSchemaSPFN("uspGetTanulokSzamonkeresElorejelzesei");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200327134223)]
|
||||
public class DB_920 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"sp_AktivTanevValtasa.sql",
|
||||
"uspGenerateTanevAdatokFromExistingTanev.sql",
|
||||
"uspCloneTanulo.sql",
|
||||
"uspCreateSchemaViews.sql");
|
||||
CreateSchemaSPFN(
|
||||
"sp_AktivTanevValtasa",
|
||||
"uspCloneTanulo");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200327135629)]
|
||||
public class KRETA2_3636 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("KRETA2_3636.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200327164433)]
|
||||
public class KRETA2_2815 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika.sql");
|
||||
CreateSchemaSPFN("sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200330084728)]
|
||||
public class DB_2269 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetFaliujsagBejegyzesek.sql");
|
||||
CreateSchemaSPFN("sp_GetFaliujsagBejegyzesek");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200330114459)]
|
||||
public class KRETA2_3736 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("KRETA2_3736.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200330141206)]
|
||||
public class KRETA2_3657 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetHaladasiNaploAdatok.sql");
|
||||
CreateSchemaSPFN("uspGetHaladasiNaploAdatok");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200330143506)]
|
||||
public class DB_2278 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DB_2278.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200331080348)]
|
||||
public class KRETA2_3630 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_FizikaiTorlesOrarendek.sql", "uspOrarendImport.sql");
|
||||
CreateSchemaSPFN("sp_FizikaiTorlesOrarendek", "uspOrarendImport");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200331112535)]
|
||||
public class KRETA2_3673 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetNyomtatvanyokOrarendOsszes.sql");
|
||||
CreateSchemaSPFN("uspGetNyomtatvanyokOrarendOsszes");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200331195806)]
|
||||
public class KRETA2_3674 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetOsztalyNaplo.sql");
|
||||
CreateSchemaSPFN("uspGetOsztalyNaplo");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200401102517)]
|
||||
public class KRETA2_3764 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetDokumentumTanarKapcsolodoOsztalyai.sql");
|
||||
CreateSchemaSPFN("uspGetDokumentumTanarKapcsolodoOsztalyai");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200401111557)]
|
||||
public class KRETA2_3649 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateDictionaryItems.sql", "sp_Global_SetSystemSettingsDefaultData.sql");
|
||||
ExecuteScripts("KRETA2_3649_InsertScripts.sql");
|
||||
ExecuteScripts("rendszerbeallitas_frissites.sql");
|
||||
ExecuteScripts("uspGetDokumentumTanarKapcsolodoOsztalyai.sql");
|
||||
CreateSchemaSPFN("uspGetDokumentumTanarKapcsolodoOsztalyai");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200401125825)]
|
||||
public class KRETA2_3675 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"uspGetCsoportNaplo.sql",
|
||||
"uspGetNapkozisNaplo.sql"
|
||||
);
|
||||
CreateSchemaSPFN(
|
||||
"uspGetCsoportNaplo",
|
||||
"uspGetNapkozisNaplo"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200401153543)]
|
||||
public class KRETA2_3770 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("fnGetDokumentumTanulokAdatai.sql");
|
||||
CreateSchemaSPFN("fnGetDokumentumTanulokAdatai.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200401191002)]
|
||||
public class KRETA2_3772 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("KRETA2_3772.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200402090149)]
|
||||
public class KRETA2_3693 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetErtesitesAltEsMulAdatok.sql");
|
||||
CreateSchemaSPFN("uspGetErtesitesAltEsMulAdatok");
|
||||
DeleteStoredProcedures("sp_GetErtesitesAltEsMulAdatok");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200402133337)]
|
||||
public class KRETA2_3780 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetAllSchemaKikuldendoHazifeladat.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200402135616)]
|
||||
public class DB_2291 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetNaplozasMulasztasList.sql");
|
||||
CreateSchemaSPFN("sp_GetNaplozasMulasztasList");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200402140456)]
|
||||
public class KRETA2_3770_2 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("fnGetDokumentumTanulokAdatai.sql");
|
||||
CreateSchemaSPFN("fnGetDokumentumTanulokAdatai");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200402152902)]
|
||||
public class KRETA2_3654 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetOraSorszamByOsztaly.sql");
|
||||
CreateSchemaSPFN("uspGetOraSorszamByOsztaly");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200402155944)]
|
||||
public class DB_2292 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspCreateSchemaSPFN.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200402202023)]
|
||||
public class KRETA2_3786 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetHaziFeladatokByDateRange.sql");
|
||||
CreateSchemaSPFN("uspGetHaziFeladatokByDateRange");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200403103845)]
|
||||
public class DB_2064 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("DB_2064.sql", "fnConvertBase64.sql", "uspGenerateTanevAdatok.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200403125512)]
|
||||
public class KRETA2_3694 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetOsztalyNaplo.sql", "uspGetCsoportNaplo.sql", "uspGetNapkozisNaplo.sql");
|
||||
CreateSchemaSPFN("uspGetOsztalyNaplo", "uspGetCsoportNaplo", "uspGetNapkozisNaplo");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200403130336)]
|
||||
public class KRETA2_3695 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetMulasztasiOsszesitoStatisztika.sql", "uspGetTanulokNevsoraOsszesitoStatisztika.sql");
|
||||
CreateSchemaSPFN("uspGetMulasztasiOsszesitoStatisztika", "uspGetTanulokNevsoraOsszesitoStatisztika");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200403131935)]
|
||||
public class KRETA2_3785 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("uspGetTanuloErtekelesListDataSet.sql");
|
||||
CreateSchemaSPFN("uspGetTanuloErtekelesListDataSet");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue