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