25 lines
565 B
C#
25 lines
565 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190828102813)]
|
|
public class KRETA2_935_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"fnGetOsztalyCsoportTanuloOsztalyList.sql",
|
|
"fnGetTanuloOsztaly.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN(
|
|
"fnGetOsztalyCsoportTanuloOsztalyList",
|
|
"fnGetTanuloOsztaly"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|