19 lines
491 B
C#
19 lines
491 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190227192021)]
|
|
public class AL_529 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetHelyettesitesekListaja.sql", "uspGetTanuloErtekelesListDataSet.sql");
|
|
CreateSchemaStoredProcedures("uspGetHelyettesitesekListaja", "uspGetTanuloErtekelesListDataSet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|