18 lines
352 B
C#
18 lines
352 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20211012161557)]
|
|
public class KRETA2_9970_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspGetMukodesiHelyekForFelhelyValaszto");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|