18 lines
358 B
C#
18 lines
358 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170405150351)]
|
|
public class KRETA_708_fix : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
CreateSchemaStoredProcedures("sp_GetNapKotottMunkaidoAdmin");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|