using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Faben.Api.Migrations { /// public partial class ProductBrand : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Image", table: "ProductBrands", type: "nvarchar(max)", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Image", table: "ProductBrands"); } } }