21 lines
559 B
C#
21 lines
559 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190619121733)]
|
|
public class KRETA2_88 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("renameDictionaryItem.sql", "uspGetTanuloErtekelesDetailDataSet.sql", "sp_Global_CreateDictionaryItems.sql");
|
|
ExecuteScripts("dictionaryitems_frissites.sql");
|
|
|
|
CreateSchemaStoredProcedures("uspGetTanuloErtekelesDetailDataSet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|