38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190603133414)]
|
|
public class KRETA2_21 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts
|
|
(
|
|
"6fnGetDokumentumTanulokEvesOraszamaiOsztalyonkent.sql",
|
|
"fnGetDokumentumOsztalyTanuloinakMegtarthatoOrakTantargyankent.sql",
|
|
"sp_GetDokumentumErtekelesek.sql",
|
|
"sp_GetOsztalyokEvesOraszama.sql",
|
|
"uspGenerateTanevAdatok.sql"
|
|
);
|
|
|
|
CreateSchemaFunctions
|
|
(
|
|
"6fnGetDokumentumTanulokEvesOraszamaiOsztalyonkent",
|
|
"fnGetDokumentumOsztalyTanuloinakMegtarthatoOrakTantargyankent"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures
|
|
(
|
|
"sp_GetDokumentumErtekelesek",
|
|
"sp_GetOsztalyokEvesOraszama",
|
|
"uspGenerateTanevAdatok"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|