using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Portfolio.Infrastructure.Migrations { /// public partial class updatePokemonRemovedBerry : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PokemonBerry", table: "Pokemons"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "PokemonBerry", table: "Pokemons", type: "nvarchar(max)", nullable: true); } } }