diff options
Diffstat (limited to 'archaeological_files/models.py')
-rw-r--r-- | archaeological_files/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_files/models.py b/archaeological_files/models.py index 604278c73..72da0eb5f 100644 --- a/archaeological_files/models.py +++ b/archaeological_files/models.py @@ -77,6 +77,8 @@ class File(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem, _(u"Numeric reference"), blank=True, null=True) internal_reference = models.CharField(_(u"Internal reference"), blank=True, null=True, max_length=60) + external_id = models.CharField(_(u"External ID"), blank=True, null=True, + max_length=120) name = models.TextField(_(u"Name"), blank=True, null=True) file_type = models.ForeignKey(FileType, verbose_name=_(u"File type")) in_charge = models.ForeignKey(Person, related_name='file_responsability', |