29 lines
642 B
C#
29 lines
642 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190924132105)]
|
|
public class KRETA2_1305_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_Global_CreateDictionaryItems.sql",
|
|
"dictionaryitems_frissites.sql",
|
|
"uspGenerateTanevAdatok.sql"
|
|
);
|
|
|
|
ExecuteScripts(
|
|
"KRETA2_1305_2.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN(
|
|
"uspGenerateTanevAdatok"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|