23 lines
478 B
C#
23 lines
478 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191030123953)]
|
|
public class KRETA2_1453_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GetAlkalmazottMunkaugyiExport.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN(
|
|
"sp_GetAlkalmazottMunkaugyiExport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|