19 lines
451 B
C#
19 lines
451 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200804170629)]
|
|
public class KRETA2_5138 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("CreateTable.sql", "AlterTable.sql", "CreateIndex.sql", "FinalizeMigration.sql");
|
|
RegisterSPFN("uspGetHaziFeladatokByDateRange");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|