Changes between Initial Version and Version 1 of Ticket #32294


Ignore:
Timestamp:
Dec 23, 2020, 5:57:16 AM (3 years ago)
Author:
Aleksey Ruban
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32294 – Description

    initial v1  
    1 Django raises an error during creation a db migration if two models with the same refer to the same model in m2m field. related_name='+' or 'foo+' don't impact anything.
     1Django raises an error during creation a db migration if two models with the same name refer to the same model in m2m field. related_name='+' or 'foo+' don't impact anything.
    22In some my project there are 50 apps and almost each one has a model with the same name. So I have to come up with a related name and write it in for each m2m field.
    33Just try to make a migration for my test project
Back to Top