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