- Author:
- zbyte64
- Posted:
- June 19, 2012
- Language:
- Python
- Version:
- Not specified
- Score:
- 2 (after 2 ratings)
Run this code in the python shell and sqlsequencereset will be executed for every app that has models.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import os
os.environ['DJANGO_COLORS'] = 'nocolor'
from django.core.management import call_command
from django.conf import settings
from django.db import connection
from django.db.models.loading import get_app
from StringIO import StringIO
commands = StringIO()
cursor = connection.cursor()
for app in settings.INSTALLED_APPS:
label = app.split('.')[-1]
if get_app(label, emptyOK=True):
call_command('sqlsequencereset', label, stdout=commands)
cursor.execute(commands.getvalue())
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 7 months ago
Comments
also see https://gist.github.com/diegolopmon/e0d376fa46995b2b433e for more recent version
#
Please login first before commenting.