23 lines
495 B
C#
23 lines
495 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20171020235504)]
|
|
public class KRETA_3548_4 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GetErtekelesMondatbankExportData.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GetErtekelesMondatbankExportData"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|