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