19 lines
525 B
C#
19 lines
525 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20211119073005)]
|
|
public class KRETA2_10541 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("KRETA2_10541.sql");
|
|
RegisterSPFN("sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika", "uspGondviseloImport", "uspOrarendImport", "uspOratervImport", "uspTantargyfelosztasImport", "uspTanuloKifirImport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|