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
commit0986fc9a02c8c36572d0021ae5c95e9bf1358293 (patch)
tree378e8dd339470c548c696515850fdcea54bcfe6b /archaeological_operations/models.py
parentb91ada3c47d839f896733c6d2049ed2d1ecc6d7f (diff)
downloadIshtar-0986fc9a02c8c36572d0021ae5c95e9bf1358293.tar.bz2
Ishtar-0986fc9a02c8c36572d0021ae5c95e9bf1358293.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: