19 lines
455 B
C#
19 lines
455 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181204124037)]
|
|
public class AL_214 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetFelhasznaloOsztalyaiByFoglalkozasAndOsztfo.sql");
|
|
CreateSchemaStoredProcedures("uspGetFelhasznaloOsztalyaiByFoglalkozasAndOsztfo");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|