20 lines
533 B
C#
20 lines
533 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181004104712)]
|
|
public class AL_11 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetDokumentumOsztalyokCsoportokTanuloi.sql", "sp_GetTanoranKivuliNaplo.sql");
|
|
CreateSchemaFunctions("fnGetDokumentumOsztalyokCsoportokTanuloi");
|
|
CreateSchemaStoredProcedures("sp_GetTanoranKivuliNaplo");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|