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