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