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