diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-10-25 19:09:24 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-10-25 19:09:24 +0100 |
commit | e46ebfd2db0c0d045739f3c0ad53da5947f0e02d (patch) | |
tree | 8d8c1f44be90e8c2cf410ea37df0bddf7e498624 /archaeological_files/models.py | |
parent | 92aa67993d86b5c75cccc08ea80d8b4db09d5649 (diff) | |
download | Ishtar-e46ebfd2db0c0d045739f3c0ad53da5947f0e02d.tar.bz2 Ishtar-e46ebfd2db0c0d045739f3c0ad53da5947f0e02d.zip |
Archaeological files: cached_label varchar(500) -> text
Diffstat (limited to 'archaeological_files/models.py')
-rw-r--r-- | archaeological_files/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/archaeological_files/models.py b/archaeological_files/models.py index 3e35ddcf3..905551286 100644 --- a/archaeological_files/models.py +++ b/archaeological_files/models.py @@ -169,8 +169,7 @@ class File(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem, mh_listing = models.NullBooleanField( u"Sur Monument Historique inscrit", blank=True, null=True) # <-- research archaeology - cached_label = models.CharField(_(u"Cached name"), max_length=500, - null=True, blank=True) + cached_label = models.TextField(_(u"Cached name"), null=True, blank=True) imported_line = models.TextField(_(u"Imported line"), null=True, blank=True) history = HistoricalRecords() |