diff options
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 |
commit | 0986fc9a02c8c36572d0021ae5c95e9bf1358293 (patch) | |
tree | 378e8dd339470c548c696515850fdcea54bcfe6b /archaeological_operations/models.py | |
parent | b91ada3c47d839f896733c6d2049ed2d1ecc6d7f (diff) | |
download | Ishtar-0986fc9a02c8c36572d0021ae5c95e9bf1358293.tar.bz2 Ishtar-0986fc9a02c8c36572d0021ae5c95e9bf1358293.zip |
Imports: allow column concat
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 4 |
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: |