24 lines
499 B
C#
24 lines
499 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181108152606)]
|
|
public class OM_1566 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GetFelhasznaloOsztalyaiByFoglalkozas.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GetFelhasznaloOsztalyaiByFoglalkozas"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|