Tuesday, August 29, 2017

Re: Encapsulating Complex Business Logic in a Migraiton

On 30/08/2017 6:43 AM, Matt S wrote:
> Standard practice is that you do not refer to "current" models (i.e.
> from app.models import MyModel) in a migration as the migration will
> break when that models changes. This means copying any model-specific
> code into the migration. This becomes impractical when the code needed
> for the migration spans multiple files and models.
>
> How can I encapsulate a complex chain of business logic involving
> multiple models in a migration? For example, if I have instance
> methods on ModelA which calls methods on ModelB, ModelB queries for
> ModelC and calls methods on it. If I use those methods as they exist
> on the models, the migration will eventually break when any of the
> involved Models' schema changes.

In the forwards_func() method after it has been run and done its work,
and if appropriate, I add an extra line after the docstring ... return None

This effectively switches it off and it never does anything ever again.

Obviously you need to be doing stuff you do not wish to roll-back - ever.


> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscribe@googlegroups.com
> <mailto:django-users+unsubscribe@googlegroups.com>.
> To post to this group, send email to django-users@googlegroups.com
> <mailto:django-users@googlegroups.com>.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/a60b8ed4-a5a6-40c8-b959-17e2a3ec3363%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/a60b8ed4-a5a6-40c8-b959-17e2a3ec3363%40googlegroups.com?utm_medium=email&utm_source=footer>.
> For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/51f4da70-2ada-4838-bd62-518d196e25e2%40dewhirst.com.au.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment