27 lines
731 B
C#
27 lines
731 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190124123812)]
|
|
public class Zoli_ErtekelesRefakt11 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
DeleteStoredProcedures(
|
|
"uspCheckTanuloEgyszerAdhatoTanuloErtekelesValidation",
|
|
"uspValidateTanuloTanuloMenessegToErtekeles"
|
|
);
|
|
|
|
ExecuteScripts(
|
|
"uspCheckTanuloListEgyszerAdhatoTanuloErtekelesValidation.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"uspCheckTanuloListEgyszerAdhatoTanuloErtekelesValidation"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|