projects
/
zzz-pokedex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
dcf2481
)
Expand some string limits so links with identifiers can fit
author
Petr Viktorin
<encukou@gmail.com>
Tue, 12 Apr 2011 00:59:13 +0000
(
03:59
+0300)
committer
Petr Viktorin
<encukou@gmail.com>
Tue, 12 Apr 2011 06:06:04 +0000
(09:06 +0300)
pokedex/db/tables.py
patch
|
blob
|
history
diff --git
a/pokedex/db/tables.py
b/pokedex/db/tables.py
index
3a82fa2
..
f921e90
100644
(file)
--- a/
pokedex/db/tables.py
+++ b/
pokedex/db/tables.py
@@
-126,7
+126,7
@@
create_translation_table('ability_names', Ability, 'names',
create_translation_table('ability_prose', Ability, 'prose',
effect = Column(markdown.MarkdownColumn(5120), nullable=True,
info=dict(description="A detailed description of this ability's effect", format='markdown')),
create_translation_table('ability_prose', Ability, 'prose',
effect = Column(markdown.MarkdownColumn(5120), nullable=True,
info=dict(description="A detailed description of this ability's effect", format='markdown')),
- short_effect = Column(markdown.MarkdownColumn(
255
), nullable=True,
+ short_effect = Column(markdown.MarkdownColumn(
512
), nullable=True,
info=dict(description="A short summary of this ability's effect", format='markdown')),
)
info=dict(description="A short summary of this ability's effect", format='markdown')),
)
@@
-854,7
+854,7
@@
create_translation_table('move_flag_type_prose', MoveFlagType, 'prose',
relation_lazy='joined',
name = Column(Unicode(32), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
relation_lazy='joined',
name = Column(Unicode(32), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
- description = Column(markdown.MarkdownColumn(
128
), nullable=True,
+ description = Column(markdown.MarkdownColumn(
256
), nullable=True,
info=dict(description="A short description of the flag", format='markdown')),
)
info=dict(description="A short description of the flag", format='markdown')),
)