19 lines
403 B
C#
19 lines
403 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200114153237)]
|
|
public class KRETA_2454 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetTanuloiAdatlapAdatok.sql");
|
|
CreateSchemaSPFN("sp_GetTanuloiAdatlapAdatok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|