Skip to content

Commit

Permalink
Merge pull request #52 from GitRon/refactor/added-apps-py
Browse files Browse the repository at this point in the history
Fixed bug with missing migrations on "DEFAULT_AUTO_FIELD"
  • Loading branch information
lociii authored Nov 4, 2023
2 parents 8905f51 + 000a32e commit f3187f8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions django_scrubber/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


class DjangoScrubberConfig(AppConfig):
name = "django_scrubber"
verbose_name = _("Django Scrubber")
default_auto_field = "django.db.models.AutoField"

0 comments on commit f3187f8

Please sign in to comment.