from django.apps import AppConfig


class AccountsConfig(AppConfig):
    default_auto_field = "django.db.models.BigAutoField"
    name = "accounts"

    # Do not query the database in ready(). Tenant aliases are registered
    # lazily by TenantMiddleware for the current company request.
    def ready(self):
        pass
