25 lines
618 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|