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