2007-08-16 14:06:55 +08:00
|
|
|
from django.core.management.base import AppCommand
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.db import DEFAULT_DB_ALIAS, connections
|
2007-08-16 14:06:55 +08:00
|
|
|
|
2013-11-03 04:12:09 +08:00
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
class Command(AppCommand):
|
|
|
|
help = 'Prints the SQL statements for resetting sequences for the given app name(s).'
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
output_transaction = True
|
|
|
|
|
2014-06-07 04:39:33 +08:00
|
|
|
def add_arguments(self, parser):
|
2017-01-21 21:13:44 +08:00
|
|
|
super().add_arguments(parser)
|
2016-03-29 06:33:29 +08:00
|
|
|
parser.add_argument(
|
|
|
|
'--database', default=DEFAULT_DB_ALIAS,
|
|
|
|
help='Nominates a database to print the SQL for. Defaults to the "default" database.',
|
|
|
|
)
|
2014-06-07 04:39:33 +08:00
|
|
|
|
2013-12-27 22:17:56 +08:00
|
|
|
def handle_app_config(self, app_config, **options):
|
|
|
|
if app_config.models_module is None:
|
|
|
|
return
|
2016-03-03 10:01:36 +08:00
|
|
|
connection = connections[options['database']]
|
2013-12-30 03:26:13 +08:00
|
|
|
models = app_config.get_models(include_auto_created=True)
|
2013-12-27 22:17:56 +08:00
|
|
|
statements = connection.ops.sequence_reset_sql(self.style, models)
|
|
|
|
return '\n'.join(statements)
|