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

Rename StatHint.text to .message (clashed with the all-texts attribute)

This commit is contained in:
Petr Viktorin 2011-03-13 15:42:50 +02:00 committed by Eevee
parent 1053b35471
commit e5f7cd2aed
2 changed files with 2 additions and 2 deletions
pokedex/db

View file

@ -1365,7 +1365,7 @@ class StatHint(TableBase):
info=dict(description=u"ID of the highest stat"))
gene_mod_5 = Column(Integer, nullable=False, index=True,
info=dict(description=u"Value of the highest stat modulo 5"))
text = TextColumn(Unicode(24), plural='texts', nullable=False, index=True, unique=True,
message = TextColumn(Unicode(24), plural='messages', nullable=False, index=True, unique=True,
info=dict(description=u"The text displayed", official=True, format='plaintext'))
class SuperContestCombo(TableBase):