mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
24 lines
555 B
Python
24 lines
555 B
Python
|
from django.db import models
|
||
|
|
||
|
|
||
|
class Follow(models.Model):
|
||
|
"""
|
||
|
Tracks major events that happen to users
|
||
|
"""
|
||
|
|
||
|
source = models.ForeignKey(
|
||
|
"users.Identity",
|
||
|
on_delete=models.CASCADE,
|
||
|
related_name="outbound_follows",
|
||
|
)
|
||
|
target = models.ForeignKey(
|
||
|
"users.Identity",
|
||
|
on_delete=models.CASCADE,
|
||
|
related_name="inbound_follows",
|
||
|
)
|
||
|
|
||
|
note = models.TextField(blank=True, null=True)
|
||
|
|
||
|
created = models.DateTimeField(auto_now_add=True)
|
||
|
updated = models.DateTimeField(auto_now=True)
|