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 | 9dbd5171b7e0ade34c7a21b986cd9715d4870be8 (patch) | |
tree | 8d8c1f44be90e8c2cf410ea37df0bddf7e498624 /archaeological_files/models.py | |
parent | 03daa8427e5309358b9999c3089e1e261ae5dbc0 (diff) | |
download | Ishtar-9dbd5171b7e0ade34c7a21b986cd9715d4870be8.tar.bz2 Ishtar-9dbd5171b7e0ade34c7a21b986cd9715d4870be8.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() |