23 lines
495 B
C#
23 lines
495 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20220405104533)]
|
|
public class DB_4531 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"DB_4531.sql",
|
|
"uspOsztondijHistoryFeltoltes.sql",
|
|
"uspOsztondijHistory.sql"
|
|
);
|
|
RegisterSPFN("uspOsztondijHistory");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|