26 lines
718 B
C#
26 lines
718 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190718102539)]
|
|
public class KRETA2_462 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetSzamonkeresElorejelzesGrid.sql",
|
|
"sp_GetFaliujsagBejegyzesek.sql",
|
|
"uspGetHelyettesitesekListaja.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN("uspGetSzamonkeresElorejelzesGrid",
|
|
"sp_GetFaliujsagBejegyzesek",
|
|
"uspGetHelyettesitesekListaja"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|