22 lines
645 B
C#
22 lines
645 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180502163116)]
|
|
public class KRETA_5590 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetDokumentumErtekelesekOsztalyonkent.sql");
|
|
CreateSchemaFunctions("fnGetDokumentumErtekelesekOsztalyonkent");
|
|
|
|
ExecuteScripts("sp_GetOsztalyNaplo.sql", "sp_GetDokumentumErtekelesekIdoszakonkent.sql");
|
|
CreateSchemaStoredProcedures("sp_GetOsztalyNaplo", "sp_GetDokumentumErtekelesekIdoszakonkent");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|