19 lines
542 B
C#
19 lines
542 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190808110704)]
|
|
public class DB_910 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("Add_Indexes.sql", "fnGetTanuloOsztalyString.sql", "uspGetGondviselokElerhetosegeiExport.sql", "uspTanuloKereses.sql");
|
|
CreateSchemaSPFN("fnGetTanuloOsztalyString", "uspGetGondviselokElerhetosegeiExport", "uspTanuloKereses");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|