init
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user