18 lines
444 B
C#
18 lines
444 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220224122503)]
|
|
public class KRETA2_10906 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
RegisterSPFN("uspGetNemKotottMunkaIdo", "sp_GetNemKotottMunkaidoReszletezo", "uspGetNevOktLeNemKotottMunkaido", "uspGetNemKotottMunkaIdoByGroupId");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|