20 lines
512 B
C#
20 lines
512 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181109145509)]
|
|
public class AL_109 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetESL_A03T02_1.sql", "fnGetLemorzsolodottTanulokByFelhely.sql");
|
|
CreateSchemaStoredProcedures("sp_GetESL_A03T02_1");
|
|
CreateSchemaFunctions("fnGetLemorzsolodottTanulokByFelhely");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|