22 lines
599 B
C#
22 lines
599 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190328134605)]
|
|
public class OM_2043_1 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetTanuloOsztaly.sql", "uspGetTanuloErtekelesDataSetByTanulo.sql", "uspGetTanuloErtekelesDetailDataSet.sql");
|
|
|
|
CreateSchemaFunctions("fnGetTanuloOsztaly");
|
|
|
|
CreateSchemaStoredProcedures("uspGetTanuloErtekelesDataSetByTanulo", "uspGetTanuloErtekelesDetailDataSet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|