19 lines
515 B
C#
19 lines
515 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190312090618)]
|
|
public class KRETA_7652 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetTanuloErtekelesDataSetByTanulo.sql", "uspGetTanuloErtekelesDetailDataSet.sql");
|
|
CreateSchemaStoredProcedures("uspGetTanuloErtekelesDataSetByTanulo", "uspGetTanuloErtekelesDetailDataSet");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|