19 lines
397 B
C#
19 lines
397 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190905114055)]
|
|
public class KRETA_8805 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
DeleteStoredProcedures(
|
|
"uspGetFeladatKategoriaIdByFeladatellatasiHelyId"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|