21 lines
532 B
C#
21 lines
532 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200921185412)]
|
|
public class KRETA2_5887 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspSetTanuloMulasztasAsKikuldott");
|
|
RegisterSPFN("uspSetTanuloErtekelesAsKikuldott");
|
|
RegisterSPFN("uspSetSzamonkeresElorejelzesAsKikuldott");
|
|
RegisterSPFN("uspSetFeljegyzesAsKikuldott");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|