From: Eevee Date: Sun, 9 May 2010 05:39:06 +0000 (-0700) Subject: Pokemon.types should order by slot. #220 X-Git-Tag: veekun-promotions/2010050901~1 X-Git-Url: http://git.veekun.com/zzz-pokedex.git/commitdiff_plain/71a6e529a593aed38d5a7898b50df5cdbaefc004?hp=a4ebddc8737108eb47ef7981f8020afa4e150409 Pokemon.types should order by slot. #220 --- diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index 8ae80d8..b9a5fea 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -785,7 +785,7 @@ Pokemon.items = relation(PokemonItem, backref='pokemon') Pokemon.generation = relation(Generation, backref='pokemon') Pokemon.shape = relation(PokemonShape, backref='pokemon') Pokemon.stats = relation(PokemonStat, backref='pokemon') -Pokemon.types = relation(Type, secondary=PokemonType.__table__) +Pokemon.types = relation(Type, secondary=PokemonType.__table__, order_by=PokemonType.slot.asc()) PokemonDexNumber.pokedex = relation(Pokedex)