summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2013-12-19 15:03:18 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2013-12-19 15:03:18 +0100
commit0be830f37fa6315961ff922d7b5cdf6f4b4c263c (patch)
tree2508a1a8086de0000cc691ade73edebcfe555cbc /ishtar_common/models.py
parent82fdcdf17b5abb2ebef6e415272f4be95879e412 (diff)
downloadIshtar-0be830f37fa6315961ff922d7b5cdf6f4b4c263c.tar.bz2
Ishtar-0be830f37fa6315961ff922d7b5cdf6f4b4c263c.zip
Organization: increase organization name lenght (ref #1569)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 473d634fa..b7553d911 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -702,7 +702,7 @@ class OrganizationType(GeneralType):
class Organization(Address, OwnPerms, ValueGetter):
TABLE_COLS = ('name', 'organization_type',)
- name = models.CharField(_(u"Name"), max_length=100)
+ name = models.CharField(_(u"Name"), max_length=300)
organization_type = models.ForeignKey(OrganizationType,
verbose_name=_(u"Type"))
history = HistoricalRecords()