Skip to content

Instantly share code, notes, and snippets.

@TheML9I
Forked from zaan/update_permissions.py
Created January 19, 2017 09:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheML9I/7782f1ffaa7500c19f6671a5c1da9edf to your computer and use it in GitHub Desktop.
Save TheML9I/7782f1ffaa7500c19f6671a5c1da9edf to your computer and use it in GitHub Desktop.
Update permissions in Django auth app.
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment