Login

Run sqlsequencereset on all apps

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

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 12 months ago

Comments

cericoda (on September 18, 2019):

also see https://gist.github.com/diegolopmon/e0d376fa46995b2b433e for more recent version

#

Please login first before commenting.