19 lines
514 B
C#
19 lines
514 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190925131822)]
|
|
public class KRETA2_1210_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetTanulokFelmentesekHatarozatok.sql", "fnGetDokumentumErtekelesekOsztalyonkent.sql");
|
|
CreateSchemaSPFN("uspGetTanulokFelmentesekHatarozatok", "fnGetDokumentumErtekelesekOsztalyonkent");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|