diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-08-13 09:21:16 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-08-13 09:21:16 +0200 |
commit | 181ad1f44580c0b0901c899f8ddf081aedcf6527 (patch) | |
tree | f6c9abfa04d7a8a1c752e5c2c0964f46086a12f2 /ishtar_common/models.py | |
parent | 8aae6eccd4eb7a138ff0bdaafd1af2bf8eec5b4e (diff) | |
download | Ishtar-181ad1f44580c0b0901c899f8ddf081aedcf6527.tar.bz2 Ishtar-181ad1f44580c0b0901c899f8ddf081aedcf6527.zip |
Update import types fixtures
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 c2f75aba3..dd8204f21 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2233,6 +2233,7 @@ class ImporterDuplicateField(models.Model): class Meta: verbose_name = _(u"Importer - Duplicate field") verbose_name_plural = _(u"Importer - Duplicate fields") + ordering = ('column', 'field_name') def natural_key(self): return self.column.importer_type, self.column.col_number, \ |