from django.apps import AppConfig from .models import PhoneVerificationService class AccountConfig(AppConfig): default_auto_field = 'django.db.models.BigAutoField' name = 'account' def ready(self): PhoneVerificationService.create()