using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DatabaseImplement.Migrations { /// public partial class prod : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Category", table: "Products", type: "text", nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "Description", table: "Products", type: "text", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Category", table: "Products"); migrationBuilder.DropColumn( name: "Description", table: "Products"); } } }