Amin Ghadersohi

Results 3 comments of Amin Ghadersohi

The SQLAlchemy Model/Store: ``` Base = sqlalchemy.ext.declarative.declarative_base() class ClientRoleStore(Base): __tablename__ = "clientrole" uuid = Column(CHAR(36), primary_key=True, nullable=False, default=lambda: str(uuid1())) created_at = Column('created_at', DateTime, nullable=False, server_default=func.now()) updated_at = Column('updated_at', DateTime, index=True,...

let me know what you think.

Thanks so much!