18 lines
392 B
C#
18 lines
392 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190722143307)]
|
|
public class DB_449 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
DeleteFunctions("fnGetTanuloTantargyMulasztasMegtartottOra", "fnGetTanuloTantargyMulasztasOsszesOra");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|