24 lines
555 B
C#
24 lines
555 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180116135640)]
|
|
public class KRETA_4718 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetDokumentumErtekelesekOsztalyonkent.sql");
|
|
|
|
CreateSchemaFunctions("fnGetDokumentumErtekelesekOsztalyonkent");
|
|
|
|
ExecuteScripts("sp_GetOsztalyNaplo.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetOsztalyNaplo");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|