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