flask sqlalchemy. commit does not save changes code example
Example: flask sqlalchemy. commit does not save changes
#When updating a JSON(B) attribute I
#think you might need to flag it as modified
from sqlalchemy.orm.attributes import flag_modified
custObj.contextjason = { 'foo':'bar', 'so':'be it'}
flag_modified(custObj, "contextjason")
db.session.commit()