diff options
| author | Barry Warsaw | 2014-12-01 22:02:08 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2014-12-01 22:02:08 -0500 |
| commit | 590c96831bd03f193d07a063b8ee35b14416dc28 (patch) | |
| tree | 16f9a675452eb389200642bfec97d6090696de57 /src/mailman/model/message.py | |
| parent | 44e43727be13e3554342c2b5b75b7dc42abdb18c (diff) | |
| download | mailman-590c96831bd03f193d07a063b8ee35b14416dc28.tar.gz mailman-590c96831bd03f193d07a063b8ee35b14416dc28.tar.zst mailman-590c96831bd03f193d07a063b8ee35b14416dc28.zip | |
Diffstat (limited to 'src/mailman/model/message.py')
| -rw-r--r-- | src/mailman/model/message.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/model/message.py b/src/mailman/model/message.py index 691861d46..099e5a511 100644 --- a/src/mailman/model/message.py +++ b/src/mailman/model/message.py @@ -24,7 +24,7 @@ __all__ = [ 'Message', ] -from sqlalchemy import Column, Integer, LargeBinary, Unicode +from sqlalchemy import Column, Integer, Unicode from zope.interface import implementer from mailman.database.model import Model @@ -42,8 +42,8 @@ class Message(Model): id = Column(Integer, primary_key=True) # This is a Messge-ID field representation, not a database row id. message_id = Column(Unicode) - message_id_hash = Column(LargeBinary) - path = Column(LargeBinary) + message_id_hash = Column(Unicode) + path = Column(Unicode) @dbconnection def __init__(self, store, message_id, message_id_hash, path): |
