19 lines
437 B
C#
19 lines
437 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190530114258)]
|
|
public class OM_2646 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetOsztalyCsoportTanuloinakTanugyiAdatai.sql");
|
|
CreateSchemaFunctions("fnGetOsztalyCsoportTanuloinakTanugyiAdatai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|