using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Elements.Data.Migrations { /// public partial class Addrecipes : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IconBitmap", table: "Elements", type: "TEXT", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IconBitmap", table: "Elements"); } } }