using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LittleShop.Migrations { /// public partial class AddWeightToProductVariants : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Weight", table: "ProductVariants", type: "TEXT", nullable: true); migrationBuilder.AddColumn( name: "WeightUnit", table: "ProductVariants", type: "INTEGER", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Weight", table: "ProductVariants"); migrationBuilder.DropColumn( name: "WeightUnit", table: "ProductVariants"); } } }