1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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 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 4 years, 1 month ago
- Update ContentTypes and Permissions without syncdb by paltman 4 years, 1 month ago
- Create permissions for proxy models by charettes 3 months, 2 weeks ago
- Custom Command for Rebuilding Permissions and ContentTypes by cronosa 1 year, 2 months ago
- Aggiornare i Content Types e i Permessi del Model di una Tabella nell Admin by dario.agliottone 1 week, 3 days ago
Comments
Note this version of the script does not work with Django 1.0 - use http://www.djangosnippets.org/snippets/696/ instead.
#
where is ? create_all_contenttypes I'm using django 1.1 and ther is only update_contenttypes and update_all_contenttypes on management.py
#