mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-25 11:07:35 +00:00
7 lines
246 B
Python
Executable File
7 lines
246 B
Python
Executable File
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) |