21 lines
615 B
C#
21 lines
615 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180102110254)]
|
|
public class KRETA_4106 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetUpdateTantargyfelosztasVisszamenoleges.sql");
|
|
CreateSchemaStoredProcedures("sp_GetUpdateTantargyfelosztasVisszamenoleges");
|
|
ExecuteScripts("sp_UpdateTantargyfelosztasVisszamenoleges.sql");
|
|
CreateSchemaStoredProcedures("sp_UpdateTantargyfelosztasVisszamenoleges");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|