23 lines
498 B
C#
23 lines
498 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180704235221)]
|
|
public class SPFIX : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGetOsztalycsoportTantargyiMulasztasai.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"uspGetOsztalycsoportTantargyiMulasztasai"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|