29 lines
641 B
C#
29 lines
641 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181210132521)]
|
|
public class OM_1918 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"fnGetDokumentumErtekelesekOsztalyonkent.sql",
|
|
"uspGetBukasraAlloTanulok.sql"
|
|
|
|
);
|
|
|
|
CreateSchemaFunctions(
|
|
"fnGetDokumentumErtekelesekOsztalyonkent"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"uspGetBukasraAlloTanulok"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|