This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,45 @@
using FluentMigrator;
namespace Kreta.DataAccess.Migrations.Migrations
{
[Migration(20220125153950)]
public class DB_4422 : CustomMigration
{
public override void Up()
{
RegisterSPFN("uspFollowUpAlkalmazott");
RegisterSPFN("uspFollowUpAlkalmazottPEP");
RegisterSPFN("uspFollowUpAlkalmazottTovabbiMunkaugy");
RegisterSPFN("uspFollowUpAlkalmazottVegzettseg");
RegisterSPFN("uspFollowUpAlkalmazottVegzettsegKK");
RegisterSPFN("uspFollowUpCsengetesiRend");
RegisterSPFN("uspFollowUpCsengetesiRendOra");
RegisterSPFN("uspFollowUpDictionaryItemBase");
RegisterSPFN("uspFollowUpDictionaryItemBaseNyelv");
RegisterSPFN("uspFollowUpEszkoz");
RegisterSPFN("uspFollowUpFeladatellatasiHely");
RegisterSPFN("uspFollowUpFelhasznaloCim");
RegisterSPFN("uspFollowUpFelhasznaloEmail");
RegisterSPFN("uspFollowUpFelhasznaloTelefon");
RegisterSPFN("uspFollowUpGondviselo");
RegisterSPFN("uspFollowUpGondviseloCim");
RegisterSPFN("uspFollowUpIntezmenyAdatok");
RegisterSPFN("uspFollowUpMukodesiHely");
RegisterSPFN("uspFollowUpOraterv");
RegisterSPFN("uspFollowUpOratervTargy");
RegisterSPFN("uspFollowupRendszerBeallitas");
RegisterSPFN("uspFollowUpTantargy");
RegisterSPFN("uspFollowUpTantargyNyelv");
RegisterSPFN("uspFollowUpTanterv");
RegisterSPFN("uspFollowUpTanulo");
RegisterSPFN("uspFollowUpTanuloFelmentes");
RegisterSPFN("uspFollowUpTanuloSni");
RegisterSPFN("uspFollowUpTerem");
}
public override void Down()
{
}
}
}