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