Update ContentTypes and Permissions without syncdb

1
2
3
4
5
6
7
8
9
# Add any missing content types
from django.contrib.contenttypes.management import create_all_contenttypes
create_all_contenttypes()

# Add any missing permissions
from django.contrib.auth.management import create_permissions
from django.db.models import get_apps
for app in get_apps():
   create_permissions(app, None, 2)

More like this

  1. Update ContentTypes and Permissions without syncdb by paltman 5 years, 1 month ago
  2. Update ContentTypes and Permissions without syncdb by paltman 5 years, 1 month ago
  3. Custom Command for Rebuilding Permissions and ContentTypes by cronosa 2 years, 2 months ago
  4. Django Database Migration Management Script by paltman 4 years, 10 months ago
  5. Aggiornare i Content Types e i Permessi del Model di una Tabella nell Admin by dario.agliottone 1 year ago

Comments

akaihola (on March 27, 2009):

Here's the complete script from Patrick's blog post updated to work with Django 1.0+. A handy way to run it is the runscript command from django-extensions.

#!/usr/bin/env python

from django.core.management import setup_environ
try:
    import settings
except ImportError:
    import sys
    sys.stderr.write("Couldn't find the settings.py module.")
    sys.exit(1)

setup_environ(settings)

# Add any missing content types
from django.contrib.contenttypes.management \
    import update_all_contenttypes
update_all_contenttypes()

# Add any missing permissions
from django.contrib.auth.management import create_permissions
from django.db.models import get_apps
for app in get_apps():
    create_permissions(app, None, 2)

#

akaihola (on March 27, 2009):

I split this into two management commands and proposed them for inclusion in django-extensions.

#

(Forgotten your password?)