In django we can write '__first__' to indicate the first migration dependency
dependencies = [ ('auth', '__first__'), ]
Is there any way to get the latter?Something like "__last__"?
thank
Yes there is.
This is name - __latest__.
__latest__
Example:
dependencies = [ ('auth', '__latest__'), ]