using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace barkmanapi.Migrations { /// public partial class addweight : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "weight", table: "inventory", type: "real", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "weight", table: "inventory"); } } }