20 lines
441 B
C#
20 lines
441 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181029130249)]
|
|
public class OM_1535 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetOsztalycsoportTantargyiMulasztasai.sql");
|
|
|
|
CreateSchemaStoredProcedures("uspGetOsztalycsoportTantargyiMulasztasai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|