18 lines
432 B
C#
18 lines
432 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190902135536)]
|
|
public class KRETA2_902 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetSzamonkeresElorejelzesekByDateRange.sql");
|
|
CreateSchemaSPFN("uspGetSzamonkeresElorejelzesekByDateRange");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|