19 lines
464 B
C#
19 lines
464 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180110093352)]
|
|
public class OM_85 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetTanuloiAlapadatok.sql", "sp_GetTanuloiEgyebAdatok.sql");
|
|
CreateSchemaStoredProcedures("sp_GetTanuloiAlapadatok", "sp_GetTanuloiEgyebAdatok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|