18 lines
356 B
C#
18 lines
356 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190410124703)]
|
|
public class OM_2497 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
DeleteStoredProcedures("sp_GetAlkalmazottMunkaugyiAdataiExport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|