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