1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

Make the rest of the tests pass.

This commit is contained in:
Lynn "Zhorken" Vaughan 2013-11-09 03:49:09 -05:00
parent 7f22ad2c86
commit 5ec50ea26c
3 changed files with 5 additions and 4 deletions
pokedex/db

View file

@ -1512,7 +1512,7 @@ class PokedexVersionGroup(TableBase):
pokedex_id = Column(Integer, ForeignKey('pokedexes.id'), primary_key=True,
info=dict(description=u'The ID of the Pokédex.'))
version_group_id = Column(Integer, ForeignKey('version_groups.id'), primary_key=True,
info=dict(descruption=u'The ID of the version group.'))
info=dict(description=u'The ID of the version group.'))
class Pokemon(TableBase):
u"""A Pokémon. The core to this whole mess.
@ -2102,7 +2102,7 @@ class VersionGroup(TableBase):
id = Column(Integer, primary_key=True, nullable=False,
info=dict(description=u"This version group's unique ID."))
identifier = Column(Unicode(20), nullable=False, unique=True,
info=dict(description=u"This version group's unique textual identifier."))
info=dict(description=u"This version group's unique textual identifier.", format='identifier'))
generation_id = Column(Integer, ForeignKey('generations.id'), nullable=False,
info=dict(description=u"The ID of the generation the games in this group belong to."))
order = Column(Integer, nullable=True,