19 lines
515 B
C#
19 lines
515 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180710135907)]
|
|
public class KRETA_5291 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOrarendExcelExportData.sql", "sp_GetOrarendErvenyesseggelExcelExportData.sql");
|
|
CreateSchemaStoredProcedures("sp_GetOrarendExcelExportData", "sp_GetOrarendErvenyesseggelExcelExportData");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|