27 lines
627 B
C#
27 lines
627 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20171025163521)]
|
|
public class KRETA_3902 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GenerateErtekelesekTempTablaByTanulo.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GenerateErtekelesekTempTablaByTanulo"
|
|
);
|
|
|
|
DeleteStoredProcedures(
|
|
"sp_GetFelhasznaloOsztalyCsoportTantargyakErtekelesekhez"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|