mirror of
https://github.com/AudebertAdrien/ft_transcendence.git
synced 2025-12-16 14:07:49 +01:00
6 lines
199 B
Python
6 lines
199 B
Python
# /pong/game/models.py
|
|
|
|
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
User.add_to_class('auth_token', models.CharField(max_length=100, null=True, blank=True, unique=True)) |