18 lines
383 B
C#
18 lines
383 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20210614083938)]
|
|
public class DB_3964 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("fnGetLemorzsolodottTanulokByFelhely", "uspGetLemorzsolodottTanulokByFelhely");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|