mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-12 01:56:25 +01:00
Update models.py
Backwards compatibility
This commit is contained in:
@@ -27,7 +27,7 @@ class HRApplication(models.Model):
|
|||||||
|
|
||||||
|
|
||||||
class HRApplicationComment(models.Model):
|
class HRApplicationComment(models.Model):
|
||||||
created_on = models.DateTimeField(auto_now_add=True)
|
created_on = models.DateTimeField(auto_now_add=True, null=True)
|
||||||
comment = models.CharField(max_length=254, default="")
|
comment = models.CharField(max_length=254, default="")
|
||||||
application = models.ForeignKey(HRApplication)
|
application = models.ForeignKey(HRApplication)
|
||||||
commenter_user = models.ForeignKey(User)
|
commenter_user = models.ForeignKey(User)
|
||||||
|
|||||||
Reference in New Issue
Block a user