19 lines
494 B
C#
19 lines
494 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190523214857)]
|
|
public class AL_1066 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetSzamonkeresElorejelzesGrid.sql", "uspGetTanuloOsztalyCsoportjai.sql");
|
|
CreateSchemaStoredProcedures("uspGetSzamonkeresElorejelzesGrid", "uspGetTanuloOsztalyCsoportjai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|