mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Fix GrowthRate backref
It was moved from EvolutionChain to PokemonSpecies ages ago.
This commit is contained in:
parent
02b6729e1b
commit
484bd086f3
1 changed files with 1 additions and 1 deletions
|
@ -2826,7 +2826,7 @@ PokemonSpecies.flavor_text = relationship(PokemonSpeciesFlavorText,
|
|||
backref='species')
|
||||
PokemonSpecies.growth_rate = relationship(GrowthRate,
|
||||
innerjoin=True,
|
||||
backref='evolution_chains')
|
||||
backref='species')
|
||||
PokemonSpecies.habitat = relationship(PokemonHabitat,
|
||||
backref='species')
|
||||
PokemonSpecies.color = relationship(PokemonColor,
|
||||
|
|
Loading…
Reference in a new issue