diff options
Diffstat (limited to 'app/publications/models.py')
-rw-r--r-- | app/publications/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/publications/models.py b/app/publications/models.py index a7f0c1a..05f7267 100644 --- a/app/publications/models.py +++ b/app/publications/models.py @@ -38,6 +38,10 @@ class Publication(models.Model): status = models.IntegerField(choices=PUB_STATUS, default=0) date_created = models.DateTimeField(blank=True, auto_now_add=True, editable=False) date_updated = models.DateTimeField(blank=True, auto_now=True, editable=False) + pays = models.BooleanField(default=True) + pays_amount = models.CharField(max_length=100, blank=True) + submission_period_start = models.DateField(blank=True, null=True) + submission_period_end = models.DateField(blank=True, null=True) class Meta: ordering = ('-name', '-date_created') |