22 lines
490 B
C#
22 lines
490 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181002153952)]
|
|
public class KRETA_7160 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GetTanuloErtekelesDetailDataSet.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GetTanuloErtekelesDetailDataSet"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|