diff options
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 |
commit | 971bb0bb4cad64bdb0a5a5c26c470434dfdd186d (patch) | |
tree | 2508a1a8086de0000cc691ade73edebcfe555cbc /ishtar_common/models.py | |
parent | 422d78ac6cc65b6988fef1c55ce4f4b855dcdd84 (diff) | |
download | Ishtar-971bb0bb4cad64bdb0a5a5c26c470434dfdd186d.tar.bz2 Ishtar-971bb0bb4cad64bdb0a5a5c26c470434dfdd186d.zip |
Organization: increase organization name lenght (ref #1569)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
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() |