18 lines
441 B
C#
18 lines
441 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20201110150400)]
|
|
public class KRETA2_6290 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("sp_Nyomtatvany_Excel_IdoszakiOsztalyokCsoportokTantargyiStatisztika", "sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|