summaryrefslogtreecommitdiff
path: root/src/mailman/database/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/database/base.py')
-rw-r--r--src/mailman/database/base.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mailman/database/base.py b/src/mailman/database/base.py
index 2b86899bc..55edf6005 100644
--- a/src/mailman/database/base.py
+++ b/src/mailman/database/base.py
@@ -114,9 +114,3 @@ class SABaseDatabase:
session = sessionmaker(bind=self.engine)
self.store = session()
self.store.commit()
-
- # XXX BAW Why doesn't model.py _reset() do this?
- def destroy(self):
- """Drop all database tables"""
- from mailman.database.model import Model
- Model.metadata.drop_all(self.engine)