18 lines
313 B
C#
18 lines
313 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.Web.Migrations
|
|
{
|
|
[Migration(20220929142714)]
|
|
public class KRETA2_12751 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspGetTantargyData");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|