Last active
April 15, 2018 21:41
-
-
Save mazlum/29d2631537f3f8bdd7bb4c1775c2eee2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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