]> err.no Git - peojumk/commitdiff
Add comment field to invoices
authorTollef Fog Heen <tfheen@err.no>
Sat, 9 Jun 2012 18:57:16 +0000 (20:57 +0200)
committerTollef Fog Heen <tfheen@err.no>
Sat, 9 Jun 2012 18:57:16 +0000 (20:57 +0200)
invoice/models.py

index 8e5a1cac45ee777380d5b9f631ca47af616ae324..fc4e7179440374ae8759ff7f19a2f49e4cb620e2 100644 (file)
@@ -36,6 +36,7 @@ class Invoice(models.Model):
     status = models.CharField(max_length=1, choices=INVOICE_STATUS_CHOICES)
     date = models.DateField()
     due_date = models.DateField()
+    comment = models.TextField(blank = True)
 
     currency = models.CharField(max_length = 10)