Just started with SQLAlchemy, been great so far but have been tripped
up by the following;

Using the standard ORM stuff of;

Base = declarative_base()

class Temp(Base):
    __tablename__ = 'temp'
    somecol = Column('somecol', Integer)

In posgres this declares 'somecol' as an `integer' but I really want a
`bigint', is there a way to do this?  I tried the obvious looking for
BigInteger, etc.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to