19 lines
602 B
C#
19 lines
602 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190228103928)]
|
|
public class OM_2181_DB_RE : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetTanuloiAdatlapAdatok.sql", "uspGetMulasztasokDatumNezetDataByOsztalyCsoportId.sql", "sp_GetTanulokMulasztasaiKesesei.sql");
|
|
CreateSchemaStoredProcedures("sp_GetTanuloiAdatlapAdatok", "uspGetMulasztasokDatumNezetDataByOsztalyCsoportId", "sp_GetTanulokMulasztasaiKesesei");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|