23 lines
624 B
C#
23 lines
624 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190205153038)]
|
|
public class OM_2075 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika.sql",
|
|
"sp_Nyomtatvany_Excel_IdoszakiTanuloStatisztika.sql");
|
|
CreateSchemaStoredProcedures(
|
|
"sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika",
|
|
"sp_Nyomtatvany_Excel_IdoszakiTanuloStatisztika");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|