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