19 lines
412 B
C#
19 lines
412 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200402202023)]
|
|
public class KRETA2_3786 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetHaziFeladatokByDateRange.sql");
|
|
CreateSchemaSPFN("uspGetHaziFeladatokByDateRange");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|