20 lines
508 B
C#
20 lines
508 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180320144150)]
|
|
public class OM_616_I : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetNemMegtartottOrakSzamaByHet.sql", "sp_GetNemMegtartottOrakSzamaPerHet.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetNemMegtartottOrakSzamaByHet", "sp_GetNemMegtartottOrakSzamaPerHet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|