mirror of
https://github.com/Llloooggg/TextSouls.git
synced 2026-03-06 04:26:23 +03:00
8 lines
187 B
Python
8 lines
187 B
Python
from django.db import models
|
|
from django.contrib.auth.models import AbstractUser
|
|
|
|
|
|
class User(AbstractUser):
|
|
|
|
telegram_id = models.BigIntegerField(null=True, unique=True, blank=True)
|