mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-08 14:00:16 -04:00
7 lines
144 B
Python
7 lines
144 B
Python
from django.db import models
|
|
from django.contrib.auth.models import AbstractUser
|
|
|
|
|
|
# Create your models here.
|
|
class User(AbstractUser):
|
|
pass |