24 lines
599 B
C#
24 lines
599 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180124183734)]
|
|
public class KRETA_150_8 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GenerateErtekelesekTempTablaByTanulo.sql",
|
|
"sp_GetDokumentumErtekelesek.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GenerateErtekelesekTempTablaByTanulo",
|
|
"sp_GetDokumentumErtekelesek"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|