22 lines
437 B
C#
22 lines
437 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20221007094513)]
|
|
public class DB_4880_5 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN(
|
|
"uspSzirStatIntezmeny",
|
|
"uspSzirStatNemOktato",
|
|
"uspSzirStatOktato"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|