Changes between Initial Version and Version 1 of Ticket #25166
- Timestamp:
- Jul 23, 2015, 7:12:37 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25166 – Description
initial v1 1 1 The custom permission documentation at https://docs.djangoproject.com/en/dev/topics/auth/default/#default-permissions states that after you add a custom permission to a model's `Meta`: 2 2 3 > 3 > it will create default permissions for new models each time you run manage.py migrate. 4 4 5 5 This is incorrect. What actually happens is that Django will detect the changes to the model's `Meta` and generate the appropriate migration for it when running `makemigrations`.