24 lines
547 B
C#
24 lines
547 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181113144241)]
|
|
public class DB_54 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"DB_54.sql",
|
|
"uspCreateTanevRendje.sql",
|
|
"uspGenerateTanevAdatok.sql",
|
|
"uspGenerateTanevAdatokFromExistingTanev.sql",
|
|
"uspIntezmenyLetrehozas.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|