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

Rename the "none" damage class to "non-damaging".

Also decapitalize the classes' names, because they make sense that way
and they're not among the things the games always capitalize.
This commit is contained in:
Lynn "Zhorken" Vaughan 2010-12-07 12:43:58 -05:00
parent 87f8278c0c
commit 2aa7848b62
2 changed files with 4 additions and 4 deletions
pokedex/db

View file

@ -573,7 +573,7 @@ class MoveDamageClass(TableBase):
__tablename__ = 'move_damage_classes'
id = Column(Integer, primary_key=True, nullable=False,
info=dict(description="A numeric ID"))
name = Column(Unicode(8), nullable=False,
name = Column(Unicode(16), nullable=False,
info=dict(description="An English name of the class", format='plaintext'))
description = Column(Unicode(64), nullable=False,
info=dict(description="An English description of the class", format='plaintext'))