18 lines
434 B
C#
18 lines
434 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200622162020)]
|
|
public class KRETA2_4686 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspGetSzamonkeresElorejelzesDetailDataSet", "uspGetSzamonkeresElorejelzesekByDateRange", "uspGetSzamonkeresElorejelzesGrid");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|