diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-06-04 12:13:56 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-06-04 12:13:56 +0200 |
commit | feb6021d4d1e468855f3fcd6eef9cd2e323292fd (patch) | |
tree | 8b814009bb61e0f3b7859000436e8543626fa5cb /ishtar_common/models.py | |
parent | dcdebf8c7cbb2715c5c7a8ca351c75b45b055917 (diff) | |
parent | 9ae6128a162df616e094b2fc1892658ff05cd2c7 (diff) | |
download | Ishtar-feb6021d4d1e468855f3fcd6eef9cd2e323292fd.tar.bz2 Ishtar-feb6021d4d1e468855f3fcd6eef9cd2e323292fd.zip |
Merge branch 'stable'
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index fdad39c83..14c459ace 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1155,6 +1155,7 @@ class ImporterColumn(models.Model): """ importer_type = models.ForeignKey(ImporterType, related_name='columns') col_number = models.IntegerField(_(u"Column number"), default=1) + description = models.TextField(_("Description"), blank=True, null=True) regexp_pre_filter = models.ForeignKey("Regexp", blank=True, null=True) required = models.BooleanField(_(u"Required"), default=False) class Meta: |