19 lines
528 B
C#
19 lines
528 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190520123109)]
|
|
public class AL_1043 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetSzamonkeresElorejelzesDetailDataSet.sql", "uspGetTanulokSzamonkeresElorejelzesei.sql");
|
|
CreateSchemaStoredProcedures("uspGetSzamonkeresElorejelzesDetailDataSet", "uspGetTanulokSzamonkeresElorejelzesei");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|