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