27 lines
744 B
C#
27 lines
744 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181011120348)]
|
|
public class AL_29_3 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGetTanuloErtekelesDataSetByFotargyAltargy.sql",
|
|
"uspGetTanuloErtekelesDataSetByTantargy.sql",
|
|
"uspGetTanuloErtekelesDataSetByTanulo.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"uspGetTanuloErtekelesDataSetByFotargyAltargy",
|
|
"uspGetTanuloErtekelesDataSetByTantargy",
|
|
"uspGetTanuloErtekelesDataSetByTanulo"
|
|
);
|
|
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|