from uuid import uuid4 from flask import current_app from sqlalchemy import Column, Unicode from sqlalchemy.dialects.postgresql import UUID from sqlalchemy_utils import EmailType, PasswordType from ereuse_devicehub.resources.models import STR_SIZE, Thing class User(Thing): __table_args__ = {'schema': 'common'} id = Column(UUID(as_uuid=True), default=uuid4, primary_key=True) email = Column(EmailType, nullable=False, unique=True) password = Column(PasswordType(max_length=STR_SIZE, onload=lambda **kwargs: dict( schemes=current_app.config['PASSWORD_SCHEMES'], **kwargs ))) """ Password field. From `here `_ """ name = Column(Unicode(length=STR_SIZE)) token = Column(UUID(as_uuid=True), default=uuid4, unique=True)