21 lines
464 B
C#
21 lines
464 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180927161537)]
|
|
public class OM_1439 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("OM_1439.sql");
|
|
|
|
ExecuteScripts("uspGetElozoOranHianyzottTanulo.sql");
|
|
CreateSchemaStoredProcedures("uspGetElozoOranHianyzottTanulo");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|