You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-07-17 01:32:29 +02:00
Use the size other implementations default to
This commit is contained in:
committed by
GitHub
parent
bd20ef04cc
commit
ca44ccbe1c
@ -75,7 +75,7 @@ class CommaSeparatedList(db.TypeDecorator):
|
||||
""" Stores a list as a comma-separated string, compatible with Postfix.
|
||||
"""
|
||||
|
||||
impl = db.Text
|
||||
impl = db.String(255)
|
||||
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.Text
|
||||
impl = db.String(255)
|
||||
cache_ok = True
|
||||
python_type = str
|
||||
|
||||
|
Reference in New Issue
Block a user