23 lines
515 B
C#
23 lines
515 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180815150256)]
|
|
public class KRETA_6408 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("alterTables.sql", "createDictionaryItem.sql", "sp_Global_CreateDictionaryItems.sql");
|
|
|
|
DeleteStoredProcedures("sp_GetBizonyitvanyPotlap");
|
|
|
|
DeleteFunctions("fnGetTanorakNevekkel");
|
|
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|