kreta/Kreta.DataAccess.Migrations/Migrations/Archive/20190116120820_OM_2008.cs
2024-03-13 00:33:46 +01:00

25 lines
618 B
C#

using FluentMigrator;
namespace Kreta.DataAccess.Migrations.Migrations
{
[Migration(20190116120820)]
public class OM_2008 : CustomMigration
{
public override void Up()
{
ExecuteScripts(
"uspGetTanarNemTanitottOsztalyaiByFoglalkozas.sql",
"uspGetTanarNemTanitottTanuloi.sql"
);
CreateSchemaStoredProcedures(
"uspGetTanarNemTanitottOsztalyaiByFoglalkozas",
"uspGetTanarNemTanitottTanuloi"
);
}
public override void Down()
{
}
}
}