25 lines
780 B
C#
25 lines
780 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180207115855)]
|
|
public class HELP_27584 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetLemorzsolodottTanulokByFelhely.sql");
|
|
CreateSchemaFunctions("fnGetLemorzsolodottTanulokByFelhely");
|
|
ExecuteScripts("sp_GetESL_A03T01_1.sql");
|
|
CreateSchemaStoredProcedures("sp_GetESL_A03T01_1");
|
|
ExecuteScripts("sp_GetESL_A03T02_1.sql");
|
|
CreateSchemaStoredProcedures("sp_GetESL_A03T02_1");
|
|
ExecuteScripts("sp_GetESL_A03T03_1.sql");
|
|
CreateSchemaStoredProcedures("sp_GetESL_A03T03_1");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|