Added endpoints for specific verspakketten, added sorting for All Verspakketten endpoint

This commit is contained in:
moarten
2026-04-14 21:47:46 +02:00
parent 7bce78aa0c
commit 0acc9a1f8e
15 changed files with 351 additions and 10 deletions

View File

@@ -0,0 +1,28 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Lutra.Infrastructure.Sql.Migrations
{
/// <inheritdoc />
public partial class AddPrijsInCentenToVerspakket : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "PrijsInCenten",
table: "Verspaketten",
type: "integer",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PrijsInCenten",
table: "Verspaketten");
}
}
}