19 lines
522 B
C#
19 lines
522 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180606145709)]
|
|
public class KRETA_5769 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetOsztalycsoportTantargyiMulasztasai.sql", "sp_GetNaplozasMulasztasList.sql", "index.sql");
|
|
CreateSchemaStoredProcedures("sp_GetNaplozasMulasztasList", "uspGetOsztalycsoportTantargyiMulasztasai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|