This commit is contained in:
2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
@@ -0,0 +1,43 @@
using FluentMigrator;
namespace Kreta.DataAccess.Migrations.Migrations
{
[Migration(20180424133937)]
public class OM_743 : CustomMigration
{
public override void Up()
{
ExecuteScripts("OM_743.sql");
ExecuteScripts(
"sp_FollowUpAlkalmazott.sql",
"sp_FollowUpEszkoz.sql",
"sp_FollowUpFeladatellatasiHely.sql",
"sp_FollowUpIntezmenyAdatok.sql",
"sp_FollowUpMukodesiHely.sql",
"sp_FollowUpOraterv.sql",
"sp_FollowUpTantargy.sql",
"sp_FollowUpTanterv.sql",
"sp_FollowUpTerem.sql"
);
CreateSchemaStoredProcedures(
"sp_FollowUpAlkalmazott",
"sp_FollowUpEszkoz",
"sp_FollowUpFeladatellatasiHely",
"sp_FollowUpIntezmenyAdatok",
"sp_FollowUpMukodesiHely",
"sp_FollowUpOraterv",
"sp_FollowUpTantargy",
"sp_FollowUpTanterv",
"sp_FollowUpTerem"
);
}
public override void Down()
{
}
}
}