17 lines
355 B
C#
17 lines
355 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200930132939)]
|
|
public class KRETA2_6061 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN(
|
|
"uspGetHaziFeladatokByDateRange"
|
|
);
|
|
}
|
|
|
|
public override void Down() { }
|
|
}
|
|
}
|