summaryrefslogtreecommitdiff
path: root/archaeological_operations/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2015-10-28 11:48:24 +0100
committerÉtienne Loks <etienne.loks@proxience.com>2015-10-28 11:48:24 +0100
commitb50301535578174f4a9641db3f0778e3765bbf32 (patch)
tree378e8dd339470c548c696515850fdcea54bcfe6b /archaeological_operations/models.py
parent47f8123aba5c0e967835a204d60cf3aa8077da63 (diff)
downloadIshtar-b50301535578174f4a9641db3f0778e3765bbf32.tar.bz2
Ishtar-b50301535578174f4a9641db3f0778e3765bbf32.zip
Imports: allow column concat
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r--archaeological_operations/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py
index e59cac7d6..bc140a2d7 100644
--- a/archaeological_operations/models.py
+++ b/archaeological_operations/models.py
@@ -759,8 +759,8 @@ class Parcel(LightHistorizedItem):
section = models.CharField(_(u"Section"), max_length=4)
parcel_number = models.CharField(_(u"Parcel number"), max_length=6,
null=True, blank=True)
- external_id = models.CharField(_(u"External ID"), max_length=12, null=True,
- blank=True)
+ external_id = models.CharField(_(u"External ID"), max_length=100,
+ null=True, blank=True)
address = models.TextField(_(u"Address - Locality"), null=True, blank=True)
class Meta: