2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-16 05:07:12 +00:00

tidy obsolete troggle/code/reset_db

This commit is contained in:
Philip Sargent
2021-04-10 01:14:23 +01:00
parent 6dc54adec8
commit 876868506f
5 changed files with 53 additions and 32 deletions

View File

@@ -0,0 +1,30 @@
import os
from optparse import make_option
from django.db import connection
from django.core import management
from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User
import settings
"""this is now replaced by databaseRest.py
I don't know why this still exists. Needs testing to see if
removing it makes django misbehave.
"""
class Command(BaseCommand):
def add_arguments(self, parser):
# Positional arguments
parser.add_argument('posargs', nargs='+', type=int)
# Named (optional) arguments
parser.add_argument(
'--delete',
action='store_true',
help='Removed as redundant - use databaseReset.py',
)
def handle(self, *args, **options):
print(args)
print(options)