18 lines
392 B
C#
18 lines
392 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180723164316)]
|
|
public class IntezmenyLetrehozas : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_IntezmenyLetrehozas.sql", "sp_Global_GenerateTanevAdatok.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|