2009-12-22 23:18:51 +08:00
|
|
|
from optparse import make_option
|
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
from django.core.management.base import AppCommand
|
2009-12-22 23:18:51 +08:00
|
|
|
from django.db import connections, models, DEFAULT_DB_ALIAS
|
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
|
|
|
|
|
|
|
option_list = AppCommand.option_list + (
|
|
|
|
make_option('--database', action='store', dest='database',
|
|
|
|
default=DEFAULT_DB_ALIAS, help='Nominates a database to print the '
|
|
|
|
'SQL for. Defaults to the "default" database.'),
|
|
|
|
|
|
|
|
)
|
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
output_transaction = True
|
|
|
|
|
|
|
|
def handle_app(self, app, **options):
|
2009-12-22 23:18:51 +08:00
|
|
|
connection = connections[options.get('database', DEFAULT_DB_ALIAS)]
|
2010-04-01 23:29:58 +08:00
|
|
|
return u'\n'.join(connection.ops.sequence_reset_sql(self.style, models.get_models(app, include_auto_created=True))).encode('utf-8')
|