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