26 lines
678 B
C#
26 lines
678 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180627181147)]
|
|
public class KRETA_6044_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika.sql",
|
|
"sp_Nyomtatvany_Excel_IdoszakiTanuloStatisztika.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika",
|
|
"sp_Nyomtatvany_Excel_IdoszakiTanuloStatisztika"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|