diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-06-04 12:11:14 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-06-04 12:12:37 +0200 |
commit | 2e0fa016a985081ff83f3752519c6e231395ed52 (patch) | |
tree | 31dee0c82718bc874e96f326506f7e8aba975b28 /ishtar_common/models.py | |
parent | abb4b2b8e9c77e422499a076d2c6402ea159c310 (diff) | |
download | Ishtar-2e0fa016a985081ff83f3752519c6e231395ed52.tar.bz2 Ishtar-2e0fa016a985081ff83f3752519c6e231395ed52.zip |
Import: add description for columns - update import fixture
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 1dc4b6ced..b3bead9ab 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1142,6 +1142,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: |