using Microsoft.EntityFrameworkCore.Migrations; namespace MyRecipes2.Server.Migrations { public partial class bioprofileimage : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<string>( name: "Bio", table: "AspNetUsers", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn<string>( name: "ProfileImage", table: "AspNetUsers", type: "nvarchar(max)", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Bio", table: "AspNetUsers"); migrationBuilder.DropColumn( name: "ProfileImage", table: "AspNetUsers"); } } }