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