40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|