mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-27 12:07:54 +00:00
8 lines
314 B
Python
8 lines
314 B
Python
from django.contrib.auth.models import User
|
|
from django.db import models
|
|
from spa.models._BaseModel import _BaseModel
|
|
|
|
class _Activity(_BaseModel):
|
|
date = models.DateTimeField(auto_now=True)
|
|
user = models.ForeignKey(User, null=True)
|
|
uid = models.CharField(max_length=50, blank=True, null = True) |