30 lines
836 B
C#
30 lines
836 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200116101358)]
|
|
public class KRETA2_2382 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGetLemorzsolodottTanulokByFelhely.sql",
|
|
"ESLTantargyKatFeltoltes.sql",
|
|
"sp_ExportEsl_A03T01_1.sql",
|
|
"sp_GetESL_A03T01_1.sql",
|
|
"sp_GetESL_A03T02_1.sql");
|
|
CreateSchemaSPFN(
|
|
"uspGetLemorzsolodottTanulokByFelhely",
|
|
"sp_ExportEsl_A03T01_1",
|
|
"sp_GetESL_A03T01_1",
|
|
"sp_GetESL_A03T02_1");
|
|
DeleteFunctions(
|
|
"fnGetLemorzsolodottTanulokByFelhely");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|