Skip to content
Snippets Groups Projects
Commit e35c3268 authored by kaiyou's avatar kaiyou
Browse files

Make the config dict mutable so sqla writes it properly

parent fb64767b
No related branches found
No related tags found
1 merge request!4Master
from passlib import context, hash
from flask import current_app as app
from sqlalchemy.ext import declarative
from sqlalchemy.ext import declarative, mutable
from datetime import datetime
from flask_babel import lazy_gettext as _
......@@ -57,6 +57,7 @@ class Base(flask_sqlalchemy.Model):
db = flask_sqlalchemy.SQLAlchemy(model_class=Base)
@mutable.MutableDict.as_mutable
class JSONEncoded(db.TypeDecorator):
""" Represents an immutable structure as a json-encoded string.
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment