19 lines
412 B
C#
19 lines
412 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20210205090219)]
|
|
public class KRETA2_7464 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspGetTanuloErtekelesListDataSet");
|
|
RegisterSPFN("uspGetTanuloAktualisanTanultTantargyai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|