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