21 lines
640 B
C#
21 lines
640 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180626123245)]
|
|
public class KRETA_6061 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetDokumentumTanuloMentessegei.sql");
|
|
CreateSchemaFunctions("fnGetDokumentumTanuloMentessegei");
|
|
ExecuteScripts("sp_GetTorzslap.sql", "sp_GetErtesitoNyomtatvany.sql", "sp_GetOsztalyNaplo.sql");
|
|
CreateSchemaStoredProcedures("sp_GetTorzslap", "sp_GetErtesitoNyomtatvany", "sp_GetOsztalyNaplo");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|