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