1 from sqlalchemy
import Column
, ForeignKey
2 from sqlalchemy
.orm
import relation
3 from sqlalchemy
.types
import Binary
, Integer
, Unicode
5 from spline
.model
.meta
import TableBase
7 class GTSPokemon(TableBase
):
8 __tablename__
= 'gts_pokemon'
9 id = Column(Integer
, primary_key
=True, autoincrement
=True)
11 pokemon_blob
= Column(Binary(292), nullable
=False)