mirror of
https://github.com/outbackdingo/Mailu.git
synced 2026-01-27 18:19:36 +00:00
change field type to db.text
This commit is contained in:
@@ -75,7 +75,7 @@ class CommaSeparatedList(db.TypeDecorator):
|
||||
""" Stores a list as a comma-separated string, compatible with Postfix.
|
||||
"""
|
||||
|
||||
impl = db.String
|
||||
impl = db.Text
|
||||
cache_ok = True
|
||||
python_type = list
|
||||
|
||||
@@ -96,7 +96,7 @@ class JSONEncoded(db.TypeDecorator):
|
||||
""" Represents an immutable structure as a json-encoded string.
|
||||
"""
|
||||
|
||||
impl = db.String
|
||||
impl = db.Text
|
||||
cache_ok = True
|
||||
python_type = str
|
||||
|
||||
|
||||
Reference in New Issue
Block a user