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