Changes between Initial Version and Version 1 of Ticket #25166


Ignore:
Timestamp:
Jul 23, 2015, 7:12:37 AM (9 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25166 – Description

    initial v1  
    11The 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`:
    22
    3 >  it will create default permissions for new models each time you run manage.py migrate.
     3> it will create default permissions for new models each time you run manage.py migrate.
    44
    55This 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`.
Back to Top