29 lines
709 B
C#
29 lines
709 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190110132204)]
|
|
public class AL_259_1 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"fnGetOsztalyCsoportTanuloOsztalyList.sql",
|
|
"uspGetAllSchemaKikuldendoErtekeles.sql",
|
|
"uspGetTanuloErtekelesListDataSet.sql"
|
|
);
|
|
|
|
CreateSchemaFunctions(
|
|
"fnGetOsztalyCsoportTanuloOsztalyList"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"uspGetTanuloErtekelesListDataSet"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|