19 lines
418 B
C#
19 lines
418 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200217162926)]
|
|
public class DB_2058 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetLemorzsolodottTanulokByFelhely.sql");
|
|
CreateSchemaSPFN("fnGetLemorzsolodottTanulokByFelhely");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|