22 lines
501 B
C#
22 lines
501 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200309141043)]
|
|
public class DB_2146 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGenerateNemKivalaszthatoTanev.sql",
|
|
"DB_2146.sql",
|
|
"uspGenerateTanevAdatokFromExistingTanev.sql",
|
|
"uspCreateTanevRendje.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|