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