20 lines
512 B
C#
20 lines
512 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170511143153)]
|
|
public class KRETA_1180 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetNaplobaNemBejegyzettFoglalkozasok.sql", "sp_PedagogusNemBejegyzettOrai.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetNaplobaNemBejegyzettFoglalkozasok", "sp_PedagogusNemBejegyzettOrai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|