diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index 575b499..2da7a91 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -1236,7 +1236,7 @@ class PokemonForm(TableBase): info=dict(description=u'Set iff the form can only appear in battle.')) form_order = Column(Integer, nullable=False, autoincrement=False, info=dict(description=u"The order in which forms should be sorted within a species' forms. Multiple forms may have equal order, in which case they should fall back on sorting by name. " - u"order` and `pokemon.order` are generated from this.")) + u"Used in generating `pokemon_forms.order` and `pokemon.order`.")) order = Column(Integer, nullable=False, autoincrement=False, info=dict(description=u'The order in which forms should be sorted within all forms. Multiple forms may have equal order, in which case they should fall back on sorting by name.'))