21 lines
482 B
C#
21 lines
482 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180126144025)]
|
|
public class KRETA_4925 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
// Javítás
|
|
ExecuteScripts("sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika.sql");
|
|
CreateSchemaStoredProcedures("sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|