projects
/
zzz-spline-gts.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
6f00cb2
)
Binary => LargeBinary
veekun-promotions/2010060201
veekun-promotions/2010060501
veekun-promotions/2010060502
author
Eevee
<git@veekun.com>
Wed, 2 Jun 2010 06:41:26 +0000
(23:41 -0700)
committer
Eevee
<git@veekun.com>
Wed, 2 Jun 2010 06:41:26 +0000
(23:41 -0700)
splinext/gts/model/__init__.py
patch
|
blob
|
history
diff --git
a/splinext/gts/model/__init__.py
b/splinext/gts/model/__init__.py
index
3d73b54
..
fa6c541
100644
(file)
--- a/
splinext/gts/model/__init__.py
+++ b/
splinext/gts/model/__init__.py
@@
-1,6
+1,6
@@
from sqlalchemy import Column, ForeignKey
from sqlalchemy.orm import relation
from sqlalchemy import Column, ForeignKey
from sqlalchemy.orm import relation
-from sqlalchemy.types import
Binary, Integer
, Unicode
+from sqlalchemy.types import
Integer, LargeBinary
, Unicode
from spline.model.meta import TableBase
from spline.model.meta import TableBase
@@
-8,4
+8,4
@@
class GTSPokemon(TableBase):
__tablename__ = 'gts_pokemon'
id = Column(Integer, primary_key=True, autoincrement=True)
pid = Column(Integer)
__tablename__ = 'gts_pokemon'
id = Column(Integer, primary_key=True, autoincrement=True)
pid = Column(Integer)
- pokemon_blob = Column(Binary(292), nullable=False)
+ pokemon_blob = Column(
Large
Binary(292), nullable=False)