diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-10-22 13:26:30 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-10-22 13:26:30 +0200 |
commit | 398a928d10f93bcf92be97e7ecca3638e5a27362 (patch) | |
tree | 364000b355e18fe649546825a9817d5fb781c517 /archaeological_files/models.py | |
parent | f2b6af338b34bac870d595c742267a553e194d43 (diff) | |
download | Ishtar-398a928d10f93bcf92be97e7ecca3638e5a27362.tar.bz2 Ishtar-398a928d10f93bcf92be97e7ecca3638e5a27362.zip |
Fix SRA Pdl file import
Diffstat (limited to 'archaeological_files/models.py')
-rw-r--r-- | archaeological_files/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_files/models.py b/archaeological_files/models.py index aa0cda30a..604278c73 100644 --- a/archaeological_files/models.py +++ b/archaeological_files/models.py @@ -77,7 +77,7 @@ 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) - name = models.CharField(_(u"Name"), max_length=100, blank=True, null=True) + 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', verbose_name=_(u"Person in charge"), |