20 lines
500 B
C#
20 lines
500 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190506121243)]
|
|
public class AL_986 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOsztalyNaplo.sql", "fnGetOsztalyVegzosTanitasiNap.sql");
|
|
CreateSchemaStoredProcedures("sp_GetOsztalyNaplo");
|
|
CreateSchemaFunctions("fnGetOsztalyVegzosTanitasiNap");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|