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:
parent
1053b35471
commit
e5f7cd2aed
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
stat_hint_id,language_id,text
|
stat_hint_id,language_id,message
|
||||||
1,9,Loves to eat
|
1,9,Loves to eat
|
||||||
2,9,Proud of its power
|
2,9,Proud of its power
|
||||||
3,9,Sturdy body
|
3,9,Sturdy body
|
||||||
|
|
|
|
@ -1365,7 +1365,7 @@ class StatHint(TableBase):
|
||||||
info=dict(description=u"ID of the highest stat"))
|
info=dict(description=u"ID of the highest stat"))
|
||||||
gene_mod_5 = Column(Integer, nullable=False, index=True,
|
gene_mod_5 = Column(Integer, nullable=False, index=True,
|
||||||
info=dict(description=u"Value of the highest stat modulo 5"))
|
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'))
|
info=dict(description=u"The text displayed", official=True, format='plaintext'))
|
||||||
|
|
||||||
class SuperContestCombo(TableBase):
|
class SuperContestCombo(TableBase):
|
||||||
|
|
Loading…
Reference in a new issue