Skip to content

Instantly share code, notes, and snippets.

@inklesspen
Created January 4, 2015 19:14
Show Gist options
  • Save inklesspen/9c8d9b561603342ffcec to your computer and use it in GitHub Desktop.
Save inklesspen/9c8d9b561603342ffcec to your computer and use it in GitHub Desktop.
from sqlalchemy import (
Column,
Index,
Integer,
Text,
)
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import (
scoped_session,
sessionmaker,
)
from zope.sqlalchemy import ZopeTransactionExtension
DBSession = scoped_session(sessionmaker(extension=ZopeTransactionExtension()))
Base = declarative_base()
class MyModel(Base):
__tablename__ = 'models'
id = Column(Integer, primary_key=True)
name = Column(Text)
value = Column(Integer)
Index('my_index', MyModel.name, unique=True, mysql_length=255)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment