diff options
| author | Barry Warsaw | 2014-10-13 15:24:24 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2014-10-13 15:24:24 -0400 |
| commit | 8bc9e217f5c367794b05105bfc80fffac0e4b863 (patch) | |
| tree | ab83ccf1bf806bbeddbcf413e17623e8bba9b2b1 /src/mailman/model/uid.py | |
| parent | b8715f08a812906fe02289fe4213667ca8f0437e (diff) | |
| parent | 1a2868b416a139a0cb62fb33bc4225560e19958a (diff) | |
| download | mailman-8bc9e217f5c367794b05105bfc80fffac0e4b863.tar.gz mailman-8bc9e217f5c367794b05105bfc80fffac0e4b863.tar.zst mailman-8bc9e217f5c367794b05105bfc80fffac0e4b863.zip | |
Diffstat (limited to 'src/mailman/model/uid.py')
| -rw-r--r-- | src/mailman/model/uid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/model/uid.py b/src/mailman/model/uid.py index 29d8e7021..72ddd7b5a 100644 --- a/src/mailman/model/uid.py +++ b/src/mailman/model/uid.py @@ -50,7 +50,7 @@ class UID(Model): __tablename__ = 'uid' id = Column(Integer, primary_key=True) - uid = Column(UUID) + uid = Column(UUID, index=True) @dbconnection def __init__(self, store, uid): |
