22 lines
436 B
C#
22 lines
436 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220629160716)]
|
|
public class DB_4658 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN(
|
|
"uspFollowUpGondviselo",
|
|
"uspFollowUpTanulo",
|
|
"uspFollowUpTanuloSni"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|