20 lines
502 B
C#
20 lines
502 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190521105355)]
|
|
public class IntezmenyLetrehozo_fix : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_CreateSchemaStoredProcedures.sql", "uspGenerateTanevAdatok.sql", "uspIntezmenyLetrehozas.sql");
|
|
|
|
DeleteStoredProcedures("sp_GetAllSchemaKikuldendoErtekeles");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|