Files
Verspakketten-API/Lutra/Lutra.Infrastructure/Migrations/20260425194247_ReplaceVerspakketFotosWithSingleMainImage.cs
T
2026-04-29 20:36:08 +02:00

49 lines
1.5 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Lutra.Infrastructure.Sql.Migrations
{
/// <inheritdoc />
public partial class ReplaceVerspakketFotosWithSingleMainImage : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_VerspakketFotos_VerspakketId",
table: "VerspakketFotos");
migrationBuilder.DropColumn(
name: "IsMainImage",
table: "VerspakketFotos");
migrationBuilder.CreateIndex(
name: "IX_VerspakketFotos_VerspakketId",
table: "VerspakketFotos",
column: "VerspakketId",
unique: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_VerspakketFotos_VerspakketId",
table: "VerspakketFotos");
migrationBuilder.AddColumn<bool>(
name: "IsMainImage",
table: "VerspakketFotos",
type: "boolean",
nullable: false,
defaultValue: false);
migrationBuilder.CreateIndex(
name: "IX_VerspakketFotos_VerspakketId",
table: "VerspakketFotos",
column: "VerspakketId");
}
}
}