34 lines
959 B
C#
34 lines
959 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200522083715)]
|
|
public class DB_2094 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DB_2094.sql");
|
|
RegisterSPFN(
|
|
"fnGetFollowUpColumnMapping",
|
|
"sp_AktivTanevValtasa",
|
|
"uspFollowUpAlkalmazott",
|
|
"uspFollowUpDictionaryItemBase",
|
|
"uspFollowUpFelhasznaloCim",
|
|
"uspFollowUpGondviseloCim",
|
|
"uspFollowUpTanulo",
|
|
"uspGondviseloImport",
|
|
"uspInsertEgyediNap",
|
|
"uspInsertEgyediNapOsztalycsoport",
|
|
"uspOrarendImport",
|
|
"uspTantargyfelosztasImport",
|
|
"uspTanuloBesorolasImport",
|
|
"uspTanuloKifirImport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|