27 lines
638 B
C#
27 lines
638 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200521162648)]
|
|
public class KRETA2_4290 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspCreateDictionaryItems.sql");
|
|
|
|
ExecuteScripts("CreateAndAlterTables.sql");
|
|
|
|
RegisterSPFN("sp_AktivTanevValtasa",
|
|
"sp_KIRImportTanulok",
|
|
"sp_TanuloKIRStatAdatokGyorsExport",
|
|
"uspCloneTanulo",
|
|
"uspGetTanuloKirStatExport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|