edelooff / sqlalchemy-json

Full-featured JSON type with mutation tracking for SQLAlchemy
http://variable-scope.com/posts/mutation-tracking-in-nested-json-structures-using-sqlalchemy
BSD 2-Clause "Simplified" License
191 stars 34 forks source link

impl = sqlalchemy.String requires length for MySQL #6

Closed penguinolog closed 7 years ago

penguinolog commented 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.

penguinolog commented 7 years ago

7 fixing this

edelooff commented 7 years ago

This should be fixed with the merge of #8 which uses the JSONType provided by SQLAlchemy-utils.