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