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
- Update ContentTypes and Permissions without syncdb by paltman 3 years, 10 months ago
- Update ContentTypes and Permissions without syncdb by paltman 3 years, 10 months ago
- Create permissions for proxy models by charettes 1 day, 22 hours ago
- Custom Command for Rebuilding Permissions and ContentTypes by cronosa 10 months, 3 weeks ago
- EditInline for GenericForiegnKey II by paltman 3 years, 7 months ago
Comments
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.
#
I split this into two management commands and proposed them for inclusion in django-extensions.
#