20 lines
430 B
C#
20 lines
430 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170607195629)]
|
|
public class KRETA_1215 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetNemMegtartottOrakSzamaByHet.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetNemMegtartottOrakSzamaByHet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|