30 lines
808 B
C#
30 lines
808 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Lutra.Infrastructure.Sql.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddIsMainImageToVerspakketFoto : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "IsMainImage",
|
|
table: "VerspakketFotos",
|
|
type: "boolean",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "IsMainImage",
|
|
table: "VerspakketFotos");
|
|
}
|
|
}
|
|
}
|