12 lines
283 B
Python
12 lines
283 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AccountConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'account'
|
|
|
|
def ready(self):
|
|
from .models import PhoneVerificationService
|
|
PhoneVerificationService.create()
|
|
return True
|