mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Order Ability's Pokémon relations by Pokemon.order.
This commit is contained in:
parent
04ec336654
commit
b0e99aa7f1
1 changed files with 3 additions and 0 deletions
|
@ -1318,6 +1318,7 @@ Ability.foreign_names = relation(AbilityName, backref='ability')
|
||||||
Ability.generation = relation(Generation, backref='abilities')
|
Ability.generation = relation(Generation, backref='abilities')
|
||||||
Ability.all_pokemon = relation(Pokemon,
|
Ability.all_pokemon = relation(Pokemon,
|
||||||
secondary=PokemonAbility.__table__,
|
secondary=PokemonAbility.__table__,
|
||||||
|
order_by=Pokemon.order,
|
||||||
back_populates='all_abilities',
|
back_populates='all_abilities',
|
||||||
)
|
)
|
||||||
Ability.pokemon = relation(Pokemon,
|
Ability.pokemon = relation(Pokemon,
|
||||||
|
@ -1326,6 +1327,7 @@ Ability.pokemon = relation(Pokemon,
|
||||||
PokemonAbility.ability_id == Ability.id,
|
PokemonAbility.ability_id == Ability.id,
|
||||||
PokemonAbility.is_dream == False
|
PokemonAbility.is_dream == False
|
||||||
),
|
),
|
||||||
|
order_by=Pokemon.order,
|
||||||
back_populates='abilities',
|
back_populates='abilities',
|
||||||
)
|
)
|
||||||
Ability.dream_pokemon = relation(Pokemon,
|
Ability.dream_pokemon = relation(Pokemon,
|
||||||
|
@ -1334,6 +1336,7 @@ Ability.dream_pokemon = relation(Pokemon,
|
||||||
PokemonAbility.ability_id == Ability.id,
|
PokemonAbility.ability_id == Ability.id,
|
||||||
PokemonAbility.is_dream == True
|
PokemonAbility.is_dream == True
|
||||||
),
|
),
|
||||||
|
order_by=Pokemon.order,
|
||||||
back_populates='dream_ability',
|
back_populates='dream_ability',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue