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