init
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20200602101407)]
|
||||
public class KRETA2_3723 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
DeleteStoredProcedures(
|
||||
"sp_GetAlkalmazottMunkaugyiExport"
|
||||
);
|
||||
|
||||
RegisterSPFN(
|
||||
"uspGetAlkalmazottMunkaugyiAdatokData",
|
||||
"uspGetFelhasznaloBelepesData",
|
||||
"uspGetOrarendExcelExportData"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user