diff options
| author | Abhilash Raj | 2014-10-10 10:29:43 +0530 |
|---|---|---|
| committer | Abhilash Raj | 2014-10-10 10:29:43 +0530 |
| commit | 9cc31df3831298fcc1d698306a74cad6f82a1dc1 (patch) | |
| tree | bd0c48284ea83a107fa6d780aa4137776b644ab9 /src/mailman/model/pending.py | |
| parent | e3a856b28d53784dbf0a58af38002dbee1f26b01 (diff) | |
| download | mailman-9cc31df3831298fcc1d698306a74cad6f82a1dc1.tar.gz mailman-9cc31df3831298fcc1d698306a74cad6f82a1dc1.tar.zst mailman-9cc31df3831298fcc1d698306a74cad6f82a1dc1.zip | |
Diffstat (limited to 'src/mailman/model/pending.py')
| -rw-r--r-- | src/mailman/model/pending.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/model/pending.py b/src/mailman/model/pending.py index 691e94fd9..49b12c16a 100644 --- a/src/mailman/model/pending.py +++ b/src/mailman/model/pending.py @@ -56,7 +56,7 @@ class PendedKeyValue(Model): id = Column(Integer, primary_key=True) key = Column(Unicode) value = Column(Unicode) - pended_id = Column(Integer, ForeignKey('pended.id')) + pended_id = Column(Integer, ForeignKey('pended.id'), index=True) def __init__(self, key, value): self.key = key |
