19 lines
436 B
C#
19 lines
436 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190809130524)]
|
|
public class DB_385 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetPedagogusAltalAdottErtekelesek.sql", "Add_Index.sql");
|
|
CreateSchemaSPFN("sp_GetPedagogusAltalAdottErtekelesek");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|