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