17 lines
360 B
C#
17 lines
360 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20210422120723)]
|
|
public class KRETA2_8407 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspGetAllSchemaBejelentettSzamonkeresNotification");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|