19 lines
494 B
C#
19 lines
494 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191125162930)]
|
|
public class DB_1626 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetNaplozasMulasztasList.sql", "uspGetOsztalycsoportTantargyiMulasztasai.sql");
|
|
CreateSchemaSPFN("sp_GetNaplozasMulasztasList", "uspGetOsztalycsoportTantargyiMulasztasai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|