init
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20190117154639)]
|
||||
public class DB_283 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"sp_GetTanuloGondviseloExportData.sql",
|
||||
"sp_Nyomtatvany_Excel_IdoszakiOsztalyokCsoportokTantargyiStatisztika.sql",
|
||||
"sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika.sql",
|
||||
"uspGetTanuloErtekelesDataSetByFotargyAltargy.sql",
|
||||
"uspGetTanuloErtekelesDataSetByMagatartasSzorgalom.sql",
|
||||
"sp_GetFogadooraInfo.sql",
|
||||
"sp_GetTanuloiAdatlapAdatok.sql",
|
||||
"fnGetDokumentumErtekelesekOsztalyonkent.sql");
|
||||
CreateSchemaStoredProcedures(
|
||||
"sp_GetTanuloGondviseloExportData",
|
||||
"sp_Nyomtatvany_Excel_IdoszakiOsztalyokCsoportokTantargyiStatisztika",
|
||||
"sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika",
|
||||
"uspGetTanuloErtekelesDataSetByFotargyAltargy",
|
||||
"uspGetTanuloErtekelesDataSetByMagatartasSzorgalom",
|
||||
"sp_GetFogadooraInfo",
|
||||
"sp_GetTanuloiAdatlapAdatok");
|
||||
CreateSchemaFunctions("fnGetDokumentumErtekelesekOsztalyonkent");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user