Simón Oroño
Simón Oroño
This is the relevant part of the script (autogenerated) for that table: ~~~sql create rule R_ESTATUS as @column in ('ACTIVO','INACTIVO') go create type ESTATUS from char(15) not null go execute...
That particular case should be represented as an `enum`. Like this: ``` $table->enum('ESTATUS', ['ACTIVO', 'INACTIVO']); ```
Tested with a fresh clone of the PokeAPI and can confirm this is no longer an issue.
@Naramsim you're right, I was looking at the regular API :man_facepalming:.
Hi. Saw this issue and took the liberty to find the list of 100% female pokemon. This was my method: ``` select poke.id, poke.name from pokemon_v2_pokemon poke inner join pokemon_v2_pokemonspecies...
This JSON contains the evolution data of different forms. I could create a script for transforming this into the required format, however the current database structure is unable to hold...
@timeandtimeago this is yet to be implemented
What's the status of this issue?
Hi @DevMike123, I found several images from Hisuian Pokémons that have the wrong id in the name. For example, 10237.png you have Hisuian Braviari, but 10237 is Lilligant: https://pokeapi.co/api/v2/pokemon/10237 Here's...
Closes #65