20 lines
361 B
C#
20 lines
361 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220630090834)]
|
|
public class DB_4658_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN(
|
|
"uspFollowUpGondviselo"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|