diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/resume/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/resume/models.py b/app/resume/models.py index bced34e..aec1a2e 100644 --- a/app/resume/models.py +++ b/app/resume/models.py @@ -11,7 +11,7 @@ class Publisher(models.Model): body_markdown = models.TextField(null=True, blank=True) body_html = models.TextField(null=True, blank=True) url = models.CharField(max_length=200, blank=True, null=True) - #payment_time = models.DecimalField(max_digits=2, decimal_places=0) + payment_time = models.DecimalField(max_digits=2, decimal_places=0) def __str__(self): return self.name |