diff --git a/profile/models.py b/profile/models.py index 743639222894e49eaadaf7539e780d9497a3ade0..a33391ccd9bcc67688383102bbf15d26d328da29 100644 --- a/profile/models.py +++ b/profile/models.py @@ -28,6 +28,11 @@ class Profile(models.Model): ) cba_username = models.CharField(_("CBA Username"), blank=True, max_length=60) cba_user_token = models.CharField(_("CBA Token"), blank=True, max_length=255) + # FIXME: these fields should be from an abstract model + created_at = models.DateTimeField(auto_now_add=True) + created_by = models.CharField(max_length=150) + updated_at = models.DateTimeField(auto_now=True) + updated_by = models.CharField(max_length=150) def __str__(self): return self.user.username