V1.30.9 env settings fixes

This commit is contained in:
Tibor Bossanyi (Freelancer)
2021-10-02 16:02:34 +02:00
parent 3330e6ea77
commit 70f207209f
4 changed files with 7 additions and 2 deletions
@@ -29,7 +29,7 @@ class NotificationHistory(models.Model):
notification = models.ForeignKey(Notification, on_delete=models.CASCADE)
customer = models.ForeignKey(Customer, on_delete=models.CASCADE)
response = models.CharField(max_length=255)
notification_date = models.DateField(blank=True, null=True)
notification_date = models.DateTimeField(blank=True, null=True)
class Meta:
db_table = 'notification_history'