23 lines
511 B
C#
23 lines
511 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20171122174712)]
|
|
public class KRETA_4269 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GetFelhasznaloFoglalkozasokErtekelesekhez.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GetFelhasznaloFoglalkozasokErtekelesekhez"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|