36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181014214318)]
|
|
public class AL_60_3 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"fnGetOsztalyCsoportTanuloOsztalyList.sql"
|
|
);
|
|
CreateSchemaFunctions(
|
|
"fnGetOsztalyCsoportTanuloOsztalyList"
|
|
);
|
|
|
|
ExecuteScripts(
|
|
"uspGetTanuloErtekelesDataSetByFotargyAltargy.sql",
|
|
"uspGetTanuloErtekelesDataSetByMagatartasSzorgalom.sql",
|
|
"uspGetTanuloErtekelesDataSetByTantargy.sql",
|
|
"uspGetTanuloErtekelesDataSetByTanulo.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"uspGetTanuloErtekelesDataSetByFotargyAltargy",
|
|
"uspGetTanuloErtekelesDataSetByMagatartasSzorgalom",
|
|
"uspGetTanuloErtekelesDataSetByTantargy",
|
|
"uspGetTanuloErtekelesDataSetByTanulo"
|
|
);
|
|
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|