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,40 @@
using FluentMigrator;
namespace Kreta.DataAccess.Migrations.Migrations
{
[Migration(20170523165038)]
public class KRETA_1327 : CustomMigration
{
public override void Up()
{
ExecuteScripts("CreateDictionaryTable.sql",
"CreateView.sql",
"sp_Global_CreateDictionaryItems.sql",
"dictionaryitems_frissites.sql",
"CreateTable.sql",
"CreateStageTable.sql",
"sp_Global_CreateSchemaViews.sql",
"fnGetTanarAdatok.sql",
"sp_FoglalkozasArchive.sql",
"sp_GetAlkalmazottMunkaugyiExport.sql",
"sp_GetIntezmenyFeltoltottsegeRiport.sql",
"sp_KIRSTAT_a02t10.sql",
"sp_KIRSTAT_a02t62.sql",
"sp_MrgDictionaryItemBase.sql",
"sp_MrgTanarAdatok.sql");
CreateSchemaFunctions("fnGetTanarAdatok");
CreateSchemaStoredProcedures("sp_FoglalkozasArchive",
"sp_GetAlkalmazottMunkaugyiExport",
"sp_GetIntezmenyFeltoltottsegeRiport",
"sp_KIRSTAT_a02t10",
"sp_KIRSTAT_a02t62");
}
public override void Down()
{
}
}
}