17 lines
436 B
C#
17 lines
436 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220120184331)]
|
|
public class KRETA2_10565 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
DeleteStoredProcedures("uspGetCsoportVezCsoportok", "uspGetIsPedagogiaiSzakszolgalatByAlkalmazottId", "uspTanmenetModositasTTFModositaskor");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|