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