25 lines
611 B
C#
25 lines
611 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181017144104)]
|
|
public class KRETA_AL_28 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GetAlkalmazottMunkaugyiAdataiExport.sql",
|
|
"sp_GetAlkalmazottMunkaugyiExport.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GetAlkalmazottMunkaugyiAdataiExport",
|
|
"sp_GetAlkalmazottMunkaugyiExport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|