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