Changes between Initial Version and Version 1 of Ticket #30204, comment 2


Ignore:
Timestamp:
Feb 22, 2019, 11:20:39 PM (5 years ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30204, comment 2

    initial v1  
    1 Also if you really want to perform operations after a `CreateModel` is performed you could register either `pre_migrate` or `post_migrate` receivers and inspect the `plan` to determine if it contains the operation you are looking for.
     1Also if you really want to perform operations after a `CreateModel` is performed you could register either `pre_migrate` or `post_migrate` receivers and inspect the `plan` to determine if it contains the operation you are looking for. See also #29843 which plans to add `pre` and `post_operation` signals to allow `post_operation.connect(sender=CreateModel)`.
Back to Top