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