22 lines
501 B
C#
22 lines
501 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180124173934)]
|
|
public class KRETA_150_7 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GenerateErtekelesekTempTablaByTanulo.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"sp_GenerateErtekelesekTempTablaByTanulo"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|