diff options
author | luxagraf <sng@luxagraf.net> | 2016-12-13 10:36:21 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-12-13 10:36:21 -0500 |
commit | c20f86c91da8614df709756e8d8e48daa3a0e1bc (patch) | |
tree | 36df89322345b503e7fac1d42014947f099ef9ea /app | |
parent | 684f9dfa0f3376104c5b07b129f9b661df0189e4 (diff) |
updated resume and income trackers to simplify
Diffstat (limited to 'app')
-rw-r--r-- | app/income/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/income/models.py b/app/income/models.py index 9be597d..dbb03bf 100644 --- a/app/income/models.py +++ b/app/income/models.py @@ -9,8 +9,8 @@ class Gig(models.Model): title = models.CharField(max_length=200) pitch = models.TextField(null=True, blank=True) created = models.DateTimeField(default=timezone.now) - pub_date = models.DateTimeField(default=timezone.now) - due_date = models.DateField(default=timezone.now) + pub_date = models.DateTimeField(blank=True, null=True) + due_date = models.DateField(blank=True, null=True) STATUS = ( (0, "Pitched"), (1, "Accepted"), |