19 lines
440 B
C#
19 lines
440 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200417095548)]
|
|
public class KRETA2_3814 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetTanulokTantargyMulasztasokReszletezese.sql");
|
|
CreateSchemaSPFN("uspGetTanulokTantargyMulasztasokReszletezese");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|