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