mirror of
https://github.com/AmanTahiliani/PeerNotes.git
synced 2026-08-07 11:55:12 -04:00
8 lines
211 B
Python
8 lines
211 B
Python
from django.db import models
|
|
from django.contrib.auth.models import AbstractUser
|
|
from django.db import models
|
|
|
|
|
|
class PeerUser(AbstractUser):
|
|
ip_address = models.GenericIPAddressField(blank=True, null=True)
|