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