init
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20181011173618)]
|
||||
public class AL_60_1 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"sp_GetTanuloErtekelesDetailDataSet.sql",
|
||||
"uspGetTanuloErtekelesDataSetByFotargyAltargy.sql",
|
||||
"uspGetTanuloErtekelesDataSetByMagatartasSzorgalom.sql",
|
||||
"uspGetTanuloErtekelesDataSetByTantargy.sql",
|
||||
"uspGetTanuloErtekelesDataSetByTanulo.sql"
|
||||
);
|
||||
CreateSchemaStoredProcedures(
|
||||
"sp_GetTanuloErtekelesDetailDataSet",
|
||||
"uspGetTanuloErtekelesDataSetByFotargyAltargy",
|
||||
"uspGetTanuloErtekelesDataSetByMagatartasSzorgalom",
|
||||
"uspGetTanuloErtekelesDataSetByTantargy",
|
||||
"uspGetTanuloErtekelesDataSetByTanulo"
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user