summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 280376966..ab558ce75 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -1218,6 +1218,8 @@ class Format(GeneralType):
class Source(models.Model):
title = models.CharField(_(u"Title"), max_length=300)
+ external_id = models.CharField(_(u"External ID"), max_length=12, null=True,
+ blank=True)
source_type = models.ForeignKey(SourceType, verbose_name=_(u"Type"))
support_type = models.ForeignKey(SupportType, verbose_name=_(u"Support"),
blank=True, null=True,)