28 lines
818 B
C#
28 lines
818 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200122170336)]
|
|
public class DB_1906_fix : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"AddIndex.sql",
|
|
"uspGetSzamonkeresElorejelzesDetailDataSet.sql",
|
|
"uspGetSzamonkeresElorejelzesGrid.sql",
|
|
"uspGetTanuloErtekelesListDataSet.sql",
|
|
"uspGetTanuloOsztalyCsoportjai.sql");
|
|
CreateSchemaSPFN(
|
|
"uspGetSzamonkeresElorejelzesDetailDataSet",
|
|
"uspGetSzamonkeresElorejelzesGrid",
|
|
"uspGetTanuloErtekelesListDataSet",
|
|
"uspGetTanuloOsztalyCsoportjai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|