20 lines
422 B
C#
20 lines
422 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170505172139)]
|
|
public class KRETA_1134 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_Global_CreateTanevRendje20172018.sql",
|
|
"sp_Global_GenerateTanevAdatok.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|