Skip to content

Instantly share code, notes, and snippets.

@mazlum
Last active April 15, 2018 21:41
Show Gist options
  • Save mazlum/29d2631537f3f8bdd7bb4c1775c2eee2 to your computer and use it in GitHub Desktop.
Save mazlum/29d2631537f3f8bdd7bb4c1775c2eee2 to your computer and use it in GitHub Desktop.
class ContentTypesConfig(AppConfig):
name = 'django.contrib.contenttypes'
verbose_name = _("Content Types")
def ready(self):
pre_migrate.connect(inject_rename_contenttypes_operations, sender=self)
post_migrate.connect(create_contenttypes)
checks.register(check_generic_foreign_keys, checks.Tags.models)
checks.register(check_model_name_lengths, checks.Tags.models)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment