Skip to content

Instantly share code, notes, and snippets.

@charettes
Created February 2, 2016 16:23
Show Gist options
  • Save charettes/e4e650eecaf3f5fc58d3 to your computer and use it in GitHub Desktop.
Save charettes/e4e650eecaf3f5fc58d3 to your computer and use it in GitHub Desktop.
from django.db import router
from django.db.models import deletion
def ALLOW_MIGRATE_CASCADE(collector, field, sub_objs, using):
opts = sub_objs[0]._meta
if router.allow_migrate(using, opts.app_label, opts.model_name):
deletion.CASCADE(collector, field, sub_objs, using)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment