20 lines
649 B
C#
20 lines
649 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200204131902)]
|
|
public class DB_1987_fix2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetLemorzsolodottTanulokByFelhely.sql", "sp_ExportEsl_A03T01_1.sql", "sp_GetESL_A03T01_1.sql", "sp_GetESL_A03T02_1.sql");
|
|
CreateSchemaSPFN("fnGetLemorzsolodottTanulokByFelhely", "sp_ExportEsl_A03T01_1", "sp_GetESL_A03T01_1", "sp_GetESL_A03T02_1");
|
|
DeleteStoredProcedures("uspGetLemorzsolodottTanulokByFelhely");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|