Closed penguinolog closed 7 years ago
impl = sqlalchemy.String requires length for MySQL Replace by impl = sqlalchemy.LargeBinary fixes this due to possibility of handling BLOB without size.
impl = sqlalchemy.String
impl = sqlalchemy.LargeBinary
This should be fixed with the merge of #8 which uses the JSONType provided by SQLAlchemy-utils.
JSONType
impl = sqlalchemy.String
requires length for MySQL Replace byimpl = sqlalchemy.LargeBinary
fixes this due to possibility of handling BLOB without size.