troggle-unchained/core/management/commands/reset_db.py
2020-05-28 04:54:53 +01:00

34 lines
949 B
Python

import os
from optparse import make_option
from django.db import connection
from django.core import management
from django.core.urlresolvers import reverse
from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User
from troggle.core.models_caves import Cave, Entrance
import troggle.flatpages.models
import settings
"""Pretty much all of 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):
help = 'Removed as redundant - use databaseReset.py'
option_list = BaseCommand.option_list + (
make_option('--reset',
action='store_true',
dest='reset',
default=False,
help='Removed as redundant'),
)
def handle(self, *args, **options):
print(args)
print(options)