19 lines
420 B
C#
19 lines
420 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200615095338)]
|
|
public class KRETA2_4669 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
DeleteStoredProcedures("sp_GetNemMegtartottOrakSzamaPerHet");
|
|
RegisterSPFN("uspGetNemMegtartottOrakSzamaPerHet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|