diff options
Diffstat (limited to 'ishtar/ishtar_base/models.py')
| -rw-r--r-- | ishtar/ishtar_base/models.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/ishtar/ishtar_base/models.py b/ishtar/ishtar_base/models.py index 75a3517a0..4224adccb 100644 --- a/ishtar/ishtar_base/models.py +++ b/ishtar/ishtar_base/models.py @@ -1369,8 +1369,10 @@ class Operation(BaseHistorizedItem, OwnPerms):                          _(u"Prescription on large area"), blank=True, null=True)          geoarchaeological_context_prescription = models.NullBooleanField(           _(u"Prescription on geoarchaeological context"), blank=True, null=True) -        operator_reference = models.CharField(_(u"Operator reference"), +    operator_reference = models.CharField(_(u"Operator reference"),                                      max_length=20, null=True, blank=True) +    common_name = models.CharField(_(u"Common name"), max_length=120, null=True, +                                   blank=True)      comment = models.TextField(_(u"Comment"), null=True, blank=True)      history = HistoricalRecords() | 
