22 lines
571 B
C#
22 lines
571 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170927173315)]
|
|
public class KRETA_3431 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetDokumentumPedagogusOraszam.sql");
|
|
CreateSchemaFunctions("fnGetDokumentumPedagogusOraszam");
|
|
|
|
ExecuteScripts("sp_GetElfogadottTantargyfelosztasok.sql");
|
|
CreateSchemaStoredProcedures("sp_GetElfogadottTantargyfelosztasok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|