Skip to content

Instantly share code, notes, and snippets.

@d30jeff
Created April 7, 2015 03:00
Show Gist options
  • Save d30jeff/66c7348f7626388726d3 to your computer and use it in GitHub Desktop.
Save d30jeff/66c7348f7626388726d3 to your computer and use it in GitHub Desktop.
Python
class Account(Base):
__tablename__ = 'acct'
__table_args__ = (
UniqueConstraint('code'),
{'schema': 'accounting'}
)
id = Column(Integer, Sequence('acct_id_seq', schema='accounting'), primary_key=True)
code = Column(String(10), nullable=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment