summaryrefslogtreecommitdiff
path: root/src/mailman/database/schema/mm_00000000000000_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/database/schema/mm_00000000000000_base.py')
-rw-r--r--src/mailman/database/schema/mm_00000000000000_base.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mailman/database/schema/mm_00000000000000_base.py b/src/mailman/database/schema/mm_00000000000000_base.py
index f98b30a8d..0dcd28edd 100644
--- a/src/mailman/database/schema/mm_00000000000000_base.py
+++ b/src/mailman/database/schema/mm_00000000000000_base.py
@@ -21,8 +21,6 @@ from __future__ import absolute_import, print_function, unicode_literals
__metaclass__ = type
__all__ = [
- 'post_reset',
- 'pre_reset',
'upgrade',
]
@@ -35,14 +33,3 @@ _helper = None
def upgrade(database, store, version, module_path):
filename = '{0}.sql'.format(database.TAG)
database.load_schema(store, version, filename, module_path)
-
-
-
-## def pre_reset(store):
-## global _helper
-## from mailman.testing.database import ResetHelper
-## _helper = ResetHelper(VERSION, store)
-
-
-## def post_reset(store):
-## _helper.restore(store)