25 lines
568 B
C#
25 lines
568 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191002131236)]
|
|
public class KRETA2_1320_Fix : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspKIRstat_FelhasznaloPedagogus.sql",
|
|
"uspKIRstat_Evfolyam.sql"
|
|
);
|
|
CreateSchemaSPFN(
|
|
"uspKIRstat_FelhasznaloPedagogus",
|
|
"uspKIRstat_Evfolyam"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|