26 lines
698 B
C#
26 lines
698 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180628162718)]
|
|
public class KRETA_6044_3 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_Nyomtatvany_Excel_IdoszakiOsztalyokCsoportokTantargyiStatisztika.sql",
|
|
"sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_Nyomtatvany_Excel_IdoszakiOsztalyokCsoportokTantargyiStatisztika",
|
|
"sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|